Skip to content

Commit

Permalink
Merge pull request #3676 from Emurgo/fix/YOEXT-1401/ledger-byron
Browse files Browse the repository at this point in the history
[5.3.300] ledger byron fix
  • Loading branch information
vsubhuman authored Oct 4, 2024
2 parents 4e8f2ef + 658ad03 commit 128b1b9
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1071,7 +1071,7 @@ describe('Create sendAll unsigned TX from UTXO', () => {
},
);

const expectedFee = new BigNumber('1070');
const expectedFee = new BigNumber('1344');
const expectedInput = new BigNumber('11000002');
expect(sendAllResponse.senderUtxos).toEqual([utxos[0], utxos[1]]);
expect(
Expand All @@ -1080,7 +1080,7 @@ describe('Create sendAll unsigned TX from UTXO', () => {
expect(
sendAllResponse.txBuilder.get_explicit_output().coin().to_str()
).toEqual(expectedInput.minus(expectedFee).toString());
expect(sendAllResponse.txBuilder.min_fee().to_str()).toEqual('1070');
expect(sendAllResponse.txBuilder.min_fee().to_str()).toEqual(expectedFee.toString());
// make sure we don't accidentally burn a lot of coins
expect(
sendAllResponse.txBuilder.get_explicit_input().checked_sub(
Expand Down
72 changes: 36 additions & 36 deletions packages/yoroi-extension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions packages/yoroi-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yoroi",
"version": "5.3.200",
"version": "5.3.300",
"description": "Cardano ADA wallet",
"scripts": {
"dev-mv2": "rimraf dev/ && NODE_OPTIONS=--openssl-legacy-provider babel-node scripts-mv2/build --type=debug --env 'mainnet'",
Expand Down Expand Up @@ -74,8 +74,8 @@
"@babel/runtime": "7.12.18",
"@babel/runtime-corejs3": "7.12.18",
"@emurgo/cardano-message-signing-nodejs": "1.0.1",
"@emurgo/cardano-serialization-lib-nodejs": "12.1.0",
"@emurgo/cross-csl-nodejs": "5.1.1",
"@emurgo/cardano-serialization-lib-nodejs": "12.1.1",
"@emurgo/cross-csl-nodejs": "5.1.2",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.11",
"@types/chrome": "^0.0.268",
"@types/react-intl": "^3.0.0",
Expand Down Expand Up @@ -149,12 +149,12 @@
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@emurgo/cardano-message-signing-browser": "1.0.1",
"@emurgo/cardano-serialization-lib-browser": "12.1.0",
"@emurgo/cardano-serialization-lib-browser": "12.1.1",
"@emurgo/cip14-js": "2.0.0",
"@emurgo/cip4-js": "1.0.5",
"@emurgo/cross-csl-browser": "5.1.1",
"@emurgo/cross-csl-browser": "5.1.2",
"@emurgo/yoroi-eutxo-txs": "0.0.2-alpha.8",
"@emurgo/yoroi-lib": "1.2.2",
"@emurgo/yoroi-lib": "1.2.3",
"@ledgerhq/hw-transport-u2f": "5.36.0-deprecated",
"@ledgerhq/hw-transport-webauthn": "5.36.0-deprecated",
"@ledgerhq/hw-transport-webhid": "5.51.1",
Expand Down

0 comments on commit 128b1b9

Please sign in to comment.