core: gofmt

This commit is contained in:
Roman Khimov 2019-11-27 13:27:47 +03:00
parent 34a38ccce1
commit bb765ccfa7
2 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@ func NewBlockChainState(store *storage.MemCachedStore) *BlockChainState {
}
// commit commits all the data in current state into storage.
func (state *BlockChainState) commit() error {
func (state *BlockChainState) commit() error {
if err := state.accounts.commit(state.store); err != nil {
return err
}