fix comment
This commit is contained in:
parent
31ce53e256
commit
b2a12628c7
|
@ -27,12 +27,14 @@ type BaseApp struct {
|
||||||
cms sdk.CommitMultiStore // Main (uncached) state
|
cms sdk.CommitMultiStore // Main (uncached) state
|
||||||
router Router // handle any kind of message
|
router Router // handle any kind of message
|
||||||
|
|
||||||
// may be nil
|
// must be set
|
||||||
txDecoder sdk.TxDecoder // unmarshal []byte into sdk.Tx
|
txDecoder sdk.TxDecoder // unmarshal []byte into sdk.Tx
|
||||||
|
anteHandler sdk.AnteHandler // ante handler for fee and auth
|
||||||
|
|
||||||
|
// may be nil
|
||||||
initChainer sdk.InitChainer // initialize state with validators and state blob
|
initChainer sdk.InitChainer // initialize state with validators and state blob
|
||||||
beginBlocker sdk.BeginBlocker // logic to run before any txs
|
beginBlocker sdk.BeginBlocker // logic to run before any txs
|
||||||
endBlocker sdk.EndBlocker // logic to run after all txs, and to determine valset changes
|
endBlocker sdk.EndBlocker // logic to run after all txs, and to determine valset changes
|
||||||
anteHandler sdk.AnteHandler // ante handler for fee and auth
|
|
||||||
|
|
||||||
//--------------------
|
//--------------------
|
||||||
// Volatile
|
// Volatile
|
||||||
|
|
Loading…
Reference in New Issue