mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-26 03:01:42 +00:00
Return from Call() upon error
This commit is contained in:
@ -24,10 +24,10 @@ type Log struct {
|
||||
type AppState interface {
|
||||
|
||||
// Accounts
|
||||
GetAccount(Word) (*Account, error)
|
||||
GetAccount(addr Word) (*Account, error)
|
||||
UpdateAccount(*Account) error
|
||||
DeleteAccount(*Account) error
|
||||
CreateAccount(Word, uint64) (*Account, error)
|
||||
CreateAccount(addr Word, balance uint64) (*Account, error)
|
||||
|
||||
// Storage
|
||||
GetStorage(Word, Word) (Word, error)
|
||||
|
Reference in New Issue
Block a user