Skip to content

Commit

Permalink
fix:meerchange test error
Browse files Browse the repository at this point in the history
  • Loading branch information
lochjin committed Oct 12, 2024
1 parent 3de18dd commit 589b4f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion meerevm/meer/meerchange/test/meerchange_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,11 @@ func TestDeployMeerChange(t *testing.T) {

acc := node.GetWalletManager().GetAccountByIdx(0)

_, err = node.GetPublicMeerChainAPI().DeployMeerChange(acc.EvmAcct.Address)
txh, err := node.GetPublicMeerChainAPI().DeployMeerChange(acc.EvmAcct.Address)
if err != nil {
t.Fatal(err)
}
testutils.GenerateBlocksWaitForTxs(t, node, []string{txh.(string)})
addr, err := node.GetPublicMeerChainAPI().GetMeerChangeAddr()
if err != nil {
t.Fatal(err)
Expand Down

0 comments on commit 589b4f2

Please sign in to comment.