remove fmt.Println.

This commit is contained in:
Raúl Kripalani 2023-01-11 18:28:51 +00:00 committed by raulk
parent 1bfbe447db
commit 3320754a62

View File

@ -4,7 +4,6 @@ import (
"context" "context"
"encoding/hex" "encoding/hex"
"encoding/json" "encoding/json"
"fmt"
"os" "os"
"reflect" "reflect"
"strconv" "strconv"
@ -97,7 +96,6 @@ func TestDeployment(t *testing.T) {
require.NoError(t, err) require.NoError(t, err)
hash := client.EVM().SubmitTransaction(ctx, &tx) hash := client.EVM().SubmitTransaction(ctx, &tx)
fmt.Println(hash)
mpoolTx, err := client.EthGetTransactionByHash(ctx, &hash) mpoolTx, err := client.EthGetTransactionByHash(ctx, &hash)
require.NoError(t, err) require.NoError(t, err)