diff options
author | Guillaume Ballet <gballet@gmail.com> | 2019-07-04 16:00:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-04 16:00:34 +0800 |
commit | d9c75cd10e94da21d7f57e2a7528b08154cd486b (patch) | |
tree | 1ca3ec285601cc9b89d667c784aa2e7271337f70 /accounts | |
parent | 68147971734ea1f89f7899b1ca595c2c57e67079 (diff) | |
download | go-tangerine-d9c75cd10e94da21d7f57e2a7528b08154cd486b.tar go-tangerine-d9c75cd10e94da21d7f57e2a7528b08154cd486b.tar.gz go-tangerine-d9c75cd10e94da21d7f57e2a7528b08154cd486b.tar.bz2 go-tangerine-d9c75cd10e94da21d7f57e2a7528b08154cd486b.tar.lz go-tangerine-d9c75cd10e94da21d7f57e2a7528b08154cd486b.tar.xz go-tangerine-d9c75cd10e94da21d7f57e2a7528b08154cd486b.tar.zst go-tangerine-d9c75cd10e94da21d7f57e2a7528b08154cd486b.zip |
accounts/abi/bind: fix typo in comments (#19791)
Diffstat (limited to 'accounts')
-rw-r--r-- | accounts/abi/bind/bind.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accounts/abi/bind/bind.go b/accounts/abi/bind/bind.go index 6106b380c..5820b30d7 100644 --- a/accounts/abi/bind/bind.go +++ b/accounts/abi/bind/bind.go @@ -309,7 +309,7 @@ var bindTopicType = map[Lang]func(kind abi.Type, structs map[string]*tmplStruct) LangJava: bindTopicTypeJava, } -// 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) @@ -319,7 +319,7 @@ func bindTopicTypeGo(kind abi.Type, structs map[string]*tmplStruct) string { return bound } -// bindTypeGo converts a Solidity topic type to a Java one. It is almost the same +// bindTopicTypeJava converts a Solidity topic type to a Java one. It is almost the same // funcionality as for simple types, but dynamic types get converted to hashes. func bindTopicTypeJava(kind abi.Type, structs map[string]*tmplStruct) string { bound := bindTypeJava(kind, structs) |