From b2a12628c7c09975eb4e7cf9b7d551c092a11b84 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Sat, 17 Feb 2018 19:24:40 -0500 Subject: [PATCH] fix comment --- baseapp/baseapp.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/baseapp/baseapp.go b/baseapp/baseapp.go index e3cfe20a69..88ce56e501 100644 --- a/baseapp/baseapp.go +++ b/baseapp/baseapp.go @@ -27,12 +27,14 @@ type BaseApp struct { cms sdk.CommitMultiStore // Main (uncached) state router Router // handle any kind of message + // must be set + txDecoder sdk.TxDecoder // unmarshal []byte into sdk.Tx + anteHandler sdk.AnteHandler // ante handler for fee and auth + // may be nil - txDecoder sdk.TxDecoder // unmarshal []byte into sdk.Tx initChainer sdk.InitChainer // initialize state with validators and state blob beginBlocker sdk.BeginBlocker // logic to run before any txs endBlocker sdk.EndBlocker // logic to run after all txs, and to determine valset changes - anteHandler sdk.AnteHandler // ante handler for fee and auth //-------------------- // Volatile