Skip to content

Commit 11da2f6

Browse files
committed
[refine] less noise
1 parent a1906b3 commit 11da2f6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

account_e2e_test.go

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
package etherscan
99

1010
import (
11-
"encoding/json"
12-
"fmt"
1311
"math/big"
1412
"testing"
1513
)
@@ -107,8 +105,8 @@ func TestClient_UnclesMinedByAddress(t *testing.T) {
107105
blocks, err := api.UnclesMinedByAddress("0x9dd134d14d1e65f84b706d6f205cd5b1cd03a46b", 1, wantLen)
108106
noError(t, err, "api.UnclesMinedByAddress")
109107

110-
j, _ := json.MarshalIndent(blocks, "", " ")
111-
fmt.Printf("%s\n", j)
108+
//j, _ := json.MarshalIndent(blocks, "", " ")
109+
//fmt.Printf("%s\n", j)
112110

113111
if len(blocks) != wantLen {
114112
t.Errorf("got txs length %v, want %v", len(blocks), wantLen)

0 commit comments

Comments
 (0)