chore(deps): update zano digest to fe85ce2 (#116)

* chore(deps): update zano digest to fe85ce2

* rebase needed patches

* fix integration tests, generate checksum

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Czarek Nakamoto <cyjan@mrcyjanek.net>
This commit is contained in:
renovate[bot]
2025-03-04 12:27:45 +01:00
committed by GitHub
parent 991a0d0c97
commit fdb16635cb
16 changed files with 31 additions and 222 deletions

View File

@@ -21,16 +21,5 @@ Deno.test(`Regression tests (${coin})`, async (t) => {
}
});
await t.step("All releases sequentially (all tags in the release order, next)", async () => {
tags.unshift("next");
const walletInfo = await createWalletViaCli(coin, "cat", "koshka");
for (const version of tags.toReversed()) {
if (version !== "next" && version !== tags[0]) await prepareMoneroC(coin, version);
await $`deno run -A ./tests/compare.ts ${coin} ${version} ${JSON.stringify(walletInfo)}`;
}
});
await Deno.remove("./tests/wallets", { recursive: true }).catch(() => {});
});