Unverified Commit 78d089b5 authored by Mio's avatar Mio Committed by GitHub

ethclient/gethclient: fix typo (#26580)

fix grammar typo
parent 17017b25
......@@ -299,7 +299,7 @@ func testSubscribePendingTransactions(t *testing.T, client *rpc.Client) {
if err != nil {
t.Fatal(err)
}
// Check that the transaction was send over the channel
// Check that the transaction was sent over the channel
hash := <-ch
if hash != signedTx.Hash() {
t.Fatalf("Invalid tx hash received, got %v, want %v", hash, signedTx.Hash())
......@@ -333,7 +333,7 @@ func testSubscribeFullPendingTransactions(t *testing.T, client *rpc.Client) {
if err != nil {
t.Fatal(err)
}
// Check that the transaction was send over the channel
// Check that the transaction was sent over the channel
tx = <-ch
if tx.Hash() != signedTx.Hash() {
t.Fatalf("Invalid tx hash received, got %v, want %v", tx.Hash(), signedTx.Hash())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment