Skip to content

Commit

Permalink
internal/ethapi: fix typo in comment (ethereum#25056)
Browse files Browse the repository at this point in the history
typo error: keccack256 -> keccak256
  • Loading branch information
LuozhuZhang authored and cp-wjhan committed Jun 12, 2023
1 parent abb1f8b commit 3db8f38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/ethapi/api.go
Expand Up @@ -522,7 +522,7 @@ func (s *PrivateAccountAPI) SignTransaction(ctx context.Context, args Transactio
}

// Sign calculates an Ethereum ECDSA signature for:
// keccack256("\x19Ethereum Signed Message:\n" + len(message) + message))
// keccak256("\x19Ethereum Signed Message:\n" + len(message) + message))
//
// Note, the produced signature conforms to the secp256k1 curve R, S and V values,
// where the V value will be 27 or 28 for legacy reasons.
Expand Down Expand Up @@ -1946,7 +1946,7 @@ func (s *PublicTransactionPoolAPI) SendRawTransactions(ctx context.Context, enco
}

// Sign calculates an ECDSA signature for:
// keccack256("\x19Ethereum Signed Message:\n" + len(message) + message).
// keccak256("\x19Ethereum Signed Message:\n" + len(message) + message).
//
// Note, the produced signature conforms to the secp256k1 curve R, S and V values,
// where the V value will be 27 or 28 for legacy reasons.
Expand Down

0 comments on commit 3db8f38

Please sign in to comment.