diff --git a/accounts/abi/bind/auth.go b/accounts/abi/bind/auth.go index 5949fed395..6051aebe58 100644 --- a/accounts/abi/bind/auth.go +++ b/accounts/abi/bind/auth.go @@ -53,7 +53,7 @@ func NewTransactor(keyin io.Reader, passphrase string) (*TransactOpts, error) { return NewKeyedTransactor(key.PrivateKey), nil } -// NewKeystoreTransactor is a utility method to easily create a transaction signer from +// NewKeyStoreTransactor is a utility method to easily create a transaction signer from // an decrypted key from a keystore func NewKeyStoreTransactor(keystore *keystore.KeyStore, account accounts.Account) (*TransactOpts, error) { signer := types.HomesteadSigner{} diff --git a/accounts/abi/bind/bind.go b/accounts/abi/bind/bind.go index d2c20489d3..1301af300a 100644 --- a/accounts/abi/bind/bind.go +++ b/accounts/abi/bind/bind.go @@ -251,7 +251,7 @@ var bindTopicType = map[Lang]func(kind abi.Type, structs map[string]*tmplStruct) LangGo: bindTopicTypeGo, } -// bindTypeGo converts a Solidity topic type to a Go one. It is almost the same +// bindTopicTypeGo converts a Solidity topic type to a Go one. It is almost the same // funcionality as for simple types, but dynamic types get converted to hashes. func bindTopicTypeGo(kind abi.Type, structs map[string]*tmplStruct) string { bound := bindTypeGo(kind, structs)