Skip to content

Commit

Permalink
ethclient/gethclient: fix typo (#26580)
Browse files Browse the repository at this point in the history
fix grammar typo
  • Loading branch information
shimmeris committed Jan 31, 2023
1 parent 17017b2 commit 78d089b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethclient/gethclient/gethclient_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down Expand Up @@ -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())
Expand Down

0 comments on commit 78d089b

Please sign in to comment.