Skip to content

Commit

Permalink
fix(eth-multisig-v4): add chain id of the coin in the network identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
gianchandania committed Dec 18, 2023
1 parent 978f1c7 commit 0055ae2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/gas.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ describe(`Wallet Operations Gas Usage`, function () {
});

const operationHash = helpers.getSha3ForConfirmationTx(
'17000',
'1',
destinationAccount,
amount,
data,
Expand Down
2 changes: 1 addition & 1 deletion test/walletFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ describe('WalletFactory', function () {
// Get the operation hash to be signed
const expireTime = Math.floor(new Date().getTime() / 1000) + 60;
const operationHash = helpers.getSha3ForConfirmationTx(
'17000',
'1',
accounts[3].toLowerCase(),
amount,
'0x',
Expand Down
6 changes: 3 additions & 3 deletions test/walletSimple.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ const SAFE_MODE_ACTIVATE_EVENT = 'SafeModeActivated';
const coins = [
{
name: 'Eth',
nativePrefix: '17000',
nativeBatchPrefix: '17000-Batch',
tokenPrefix: '17000-ERC20',
nativePrefix: '1',
nativeBatchPrefix: '1-Batch',
tokenPrefix: '1-ERC20',
WalletSimple: EthWalletSimple
},
{
Expand Down

0 comments on commit 0055ae2

Please sign in to comment.