linting: apply 'gofmt -s -w' throughout

This commit is contained in:
Zach Ramsay
2017-11-27 22:39:11 +00:00
committed by Ethan Buchman
parent fc33576bac
commit 46ccbcbff6
12 changed files with 22 additions and 21 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ func state() *State {
s, _ := MakeGenesisState(dbm.NewMemDB(), &types.GenesisDoc{
ChainID: chainID,
Validators: []types.GenesisValidator{
types.GenesisValidator{privKey.PubKey(), 10000, "test"},
{privKey.PubKey(), 10000, "test"},
},
AppHash: nil,
})
+1
View File
@@ -10,6 +10,7 @@ import (
"github.com/tendermint/tendermint/state/txindex"
"github.com/tendermint/tendermint/types"
db "github.com/tendermint/tmlibs/db"
)
// TxIndex is the simplest possible indexer, backed by Key-Value storage (levelDB).