diff options
author | Kiel barry <kiel.j.barry@gmail.com> | 2018-05-01 07:05:24 +0800 |
---|---|---|
committer | Rafael Matias <rafael@skyle.net> | 2019-02-19 20:18:02 +0800 |
commit | fd34bf594c7aac73530a449130387a0797fd1977 (patch) | |
tree | 2c2389acb064c6716c860e8402216c5ea66fe4e7 /contracts/chequebook/api.go | |
parent | 996230174ce203f328e622b82ffc0b9e0fc1c99b (diff) | |
download | go-tangerine-fd34bf594c7aac73530a449130387a0797fd1977.tar go-tangerine-fd34bf594c7aac73530a449130387a0797fd1977.tar.gz go-tangerine-fd34bf594c7aac73530a449130387a0797fd1977.tar.bz2 go-tangerine-fd34bf594c7aac73530a449130387a0797fd1977.tar.lz go-tangerine-fd34bf594c7aac73530a449130387a0797fd1977.tar.xz go-tangerine-fd34bf594c7aac73530a449130387a0797fd1977.tar.zst go-tangerine-fd34bf594c7aac73530a449130387a0797fd1977.zip |
contracts/*: golint updates for this or self warning
(cherry picked from commit 53b823afc8c24337290ba2e7889c2dde496e9272)
Diffstat (limited to 'contracts/chequebook/api.go')
-rw-r--r-- | contracts/chequebook/api.go | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/contracts/chequebook/api.go b/contracts/chequebook/api.go index b2b2365f3..fb7080308 100644 --- a/contracts/chequebook/api.go +++ b/contracts/chequebook/api.go @@ -27,40 +27,40 @@ const Version = "1.0" var errNoChequebook = errors.New("no chequebook") -type Api struct { +type API struct { chequebookf func() *Chequebook } -func NewApi(ch func() *Chequebook) *Api { - return &Api{ch} +func NewAPI(ch func() *Chequebook) *API { + return &API{ch} } -func (self *Api) Balance() (string, error) { - ch := self.chequebookf() +func (a *API) Balance() (string, error) { + ch := a.chequebookf() if ch == nil { return "", errNoChequebook } return ch.Balance().String(), nil } -func (self *Api) Issue(beneficiary common.Address, amount *big.Int) (cheque *Cheque, err error) { - ch := self.chequebookf() +func (a *API) Issue(beneficiary common.Address, amount *big.Int) (cheque *Cheque, err error) { + ch := a.chequebookf() if ch == nil { return nil, errNoChequebook } return ch.Issue(beneficiary, amount) } -func (self *Api) Cash(cheque *Cheque) (txhash string, err error) { - ch := self.chequebookf() +func (a *API) Cash(cheque *Cheque) (txhash string, err error) { + ch := a.chequebookf() if ch == nil { return "", errNoChequebook } return ch.Cash(cheque) } -func (self *Api) Deposit(amount *big.Int) (txhash string, err error) { - ch := self.chequebookf() +func (a *API) Deposit(amount *big.Int) (txhash string, err error) { + ch := a.chequebookf() if ch == nil { return "", errNoChequebook } |