Skip to content

Commit 0da9335

Browse files
committed
[fix] update test cases
1 parent 8f0b304 commit 0da9335

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

account_e2e_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
func TestClient_AccountBalance(t *testing.T) {
16-
balance, err := api.AccountBalance("0x281055afc982d96fab65b3a49cac8b878184cb16")
16+
balance, err := api.AccountBalance("0x0000000000000000000000000000000000000000")
1717
noError(t, err, "api.AccountBalance")
1818

1919
if balance.Int().Cmp(big.NewInt(0)) != 1 {
@@ -23,10 +23,10 @@ func TestClient_AccountBalance(t *testing.T) {
2323

2424
func TestClient_MultiAccountBalance(t *testing.T) {
2525
balances, err := api.MultiAccountBalance(
26-
"0x281055afc982d96fab65b3a49cac8b878184cb16",
27-
"0x6f46cf5569aefa1acc1009290c8e043747172d89",
28-
"0x90e63c3d53e0ea496845b7a03ec7548b70014a91",
29-
"0x53d284357ec70ce289d6d64134dfac8e511c8a3d")
26+
"0x0000000000000000000000000000000000000000",
27+
"0x0000000000000000000000000000000000000001",
28+
"0x0000000000000000000000000000000000000002",
29+
"0x0000000000000000000000000000000000000003")
3030
noError(t, err, "api.MultiAccountBalance")
3131

3232
for i, item := range balances {

0 commit comments

Comments
 (0)