Skip to content

Commit 923eb74

Browse files
committed
fix
1 parent a2d4176 commit 923eb74

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pkg/tx/transfer.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ func Transfer(pk string, to string, val string, data []byte, ec *ethclient.Clien
9696
return common.Hash{}, err
9797
}
9898
err = ec.SendTransaction(context.Background(), signedTx)
99+
fmt.Println("signedTx.Hash()", signedTx.Hash().String())
100+
fmt.Println("txn.Hash()", txn.Hash().String())
99101
return txn.Hash(), err
100102
}
101103
func WaitForTransactionConfirmation(client *ethclient.Client, txHash common.Hash) (*types.Receipt, error) {

0 commit comments

Comments
 (0)