Skip to content

Commit

Permalink
Update baseapp
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessio Treglia committed Nov 14, 2018
1 parent fd99353 commit 0daf8e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions baseapp/baseapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,10 @@ func (app *BaseApp) NewContext(isCheckTx bool, header abci.Header) sdk.Context {
if isCheckTx {
return sdk.NewContext(app.checkState.ms, header, true, app.Logger).
WithMinimumFees(app.minimumFees).
WithLimitTxSigs(app.limitTxSigs)
WithTxSigLimit(app.txSigLimit)
}
return sdk.NewContext(app.deliverState.ms, header, false, app.Logger).
WithLimitTxSigs(app.limitTxSigs)
WithTxSigLimit(app.txSigLimit)
}

type state struct {
Expand Down

0 comments on commit 0daf8e8

Please sign in to comment.