diff options
author | Jeremy Schlatter <jeremy.schlatter@gmail.com> | 2019-05-14 17:38:34 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2019-05-14 17:38:34 +0800 |
commit | 184af72e4e30266b1f25b7602cc1ffdc60a130f6 (patch) | |
tree | 4e46107b82ee75d6b835a3db0a56cc7b8255799b /accounts/abi | |
parent | 07d2d83c315abae91659a28f75f8c42f6b9eb457 (diff) | |
download | go-tangerine-184af72e4e30266b1f25b7602cc1ffdc60a130f6.tar go-tangerine-184af72e4e30266b1f25b7602cc1ffdc60a130f6.tar.gz go-tangerine-184af72e4e30266b1f25b7602cc1ffdc60a130f6.tar.bz2 go-tangerine-184af72e4e30266b1f25b7602cc1ffdc60a130f6.tar.lz go-tangerine-184af72e4e30266b1f25b7602cc1ffdc60a130f6.tar.xz go-tangerine-184af72e4e30266b1f25b7602cc1ffdc60a130f6.tar.zst go-tangerine-184af72e4e30266b1f25b7602cc1ffdc60a130f6.zip |
accounts/abi: fix documentation (#19568)
Diffstat (limited to 'accounts/abi')
-rw-r--r-- | accounts/abi/method.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accounts/abi/method.go b/accounts/abi/method.go index 2d8d3d658..d3c02599f 100644 --- a/accounts/abi/method.go +++ b/accounts/abi/method.go @@ -27,9 +27,9 @@ import ( // If the method is `Const` no transaction needs to be created for this // particular Method call. It can easily be simulated using a local VM. // For example a `Balance()` method only needs to retrieve something -// from the storage and therefor requires no Tx to be send to the +// from the storage and therefore requires no Tx to be send to the // network. A method such as `Transact` does require a Tx and thus will -// be flagged `true`. +// be flagged `false`. // Input specifies the required input parameters for this gives method. type Method struct { Name string |