Skip to content

Commit

Permalink
Fix withdraw NFT cost test
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbochok committed May 17, 2022
1 parent cfd225e commit 057ab8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tests/testkit/src/eth_account.rs
Expand Up @@ -458,7 +458,7 @@ impl EthereumAccount {
Token::Uint(Uint::from(200_000)),
])),
ZkSyncTx::WithdrawNFT(tx) => nft_balances.push(Token::Tuple(vec![
Token::Uint(Uint::from_str(&tx.token.0.to_string()).unwrap()),
Token::Uint(Uint::from(tx.token.0)),
Token::Uint(Uint::from(300_000)),
])),
_ => unreachable!(),
Expand Down

0 comments on commit 057ab8e

Please sign in to comment.