Skip to content

Commit

Permalink
Merge pull request #95 from EspressoSystems/fix-typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
ImJeremyHe committed Mar 6, 2024
2 parents 9ddd100 + 581ddbc commit 06f7c3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system_tests/espresso_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -377,14 +377,14 @@ func TestEspressoE2E(t *testing.T) {

// Check if the tx is executed correctly
transferAmount := big.NewInt(1e16)
tx := l2Info.PrepareTx("Faucet", newAccount, 3e7, transfetAmount, nil)
tx := l2Info.PrepareTx("Faucet", newAccount, 3e7, transferAmount, nil)
err = l2Node.Client.SendTransaction(ctx, tx)
Require(t, err)

err = waitFor(t, ctx, func() bool {
balance := l2Node.GetBalance(t, addr)
log.Info("waiting for balance", "addr", addr, "balance", balance)
return balance.Cmp(transfetAmount) >= 0
return balance.Cmp(transferAmount) >= 0
})
Require(t, err)

Expand Down

0 comments on commit 06f7c3d

Please sign in to comment.