BalanceGetter interface shortened (#127)

* small fixes

* gofmt

* fix in raw tx build

* fixes after review

* balance getter interface
This commit is contained in:
Anastasia Prasolova 2019-02-08 18:32:01 +03:00 committed by fabwa
parent 7e43717657
commit d183ea3c1f

View file

@ -36,6 +36,5 @@ type (
// total: summarized asset amount from all the `inputs` // total: summarized asset amount from all the `inputs`
// error: error would be considered in the caller function // error: error would be considered in the caller function
CalculateInputs(address string, assetId util.Uint256, amount util.Fixed8) (inputs []transaction.Input, total util.Fixed8, err error) CalculateInputs(address string, assetId util.Uint256, amount util.Fixed8) (inputs []transaction.Input, total util.Fixed8, err error)
GetBalance(address string) ([]*Unspent, error)
} }
) )