Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jewei1997 committed Sep 7, 2024
1 parent ca01e3f commit 53cbb7d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion evmrpc/info_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package evmrpc_test

import (
"errors"
"fmt"
"math/big"
"testing"

Expand Down
3 changes: 1 addition & 2 deletions precompiles/bank/bank_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,7 @@ func TestRun(t *testing.T) {
// gas refund to the sender
banktypes.NewCoinReceivedEvent(senderAddr, sdk.NewCoins(sdk.NewCoin("usei", sdk.NewInt(172056)))),
// tip is paid to the validator
banktypes.NewCoinReceivedEvent(sdk.MustAccAddressFromBech32("sei1v4mx6hmrda5kucnpwdjsqqqqqqqqqqqqlve8dv"), sdk.NewCoins(sdk.NewCoin("usei", sdk.NewInt(25149)))),
banktypes.NewWeiReceivedEvent(sdk.MustAccAddressFromBech32("sei1v4mx6hmrda5kucnpwdjsqqqqqqqqqqqqlve8dv"), sdk.NewInt(600000000000)),
banktypes.NewCoinReceivedEvent(sdk.MustAccAddressFromBech32("sei1v4mx6hmrda5kucnpwdjsqqqqqqqqqqqqlve8dv"), sdk.NewCoins(sdk.NewCoin("usei", sdk.NewInt(27944)))),
}

require.EqualValues(t, expectedEvts.ToABCIEvents(), evts)
Expand Down

0 comments on commit 53cbb7d

Please sign in to comment.