* WIP: middleware refactor * refactor `tx.Request` * Add MsgResponses any in sdk.Result * add helper functions in abci * refactor tips * review changes * Fix mock tests * Update baseapp/abci.go * Update baseapp/abci.go * Update types/tx/middleware.go * Update types/tx/middleware.go * tx.Response to abci conversion * refactor makeABCIData * Add comments * Fix build * fix build error * fix tests * fix test * fix tests * Fix TestSimulateTx * fix tests * fix test * Fix build * Simplify code * fix test build * Use repeated bytes in txMsgData * Fix grpc-gateway test * Make proto-gen * Automagically register MsgResponse * review changes * Use froydi's trick * Use Any in TxMsgData * Finally remove API breaking change * Revert unnecessary stuff * refactor: Move TxDecoder into its own middleware * Add test for txDecoderMiddleware * Fix some baseapp tests * Fix some more tests * Fix mock tests * Fix middleware tests * Add cl * Fix tests * Update types/tx/middleware.go Co-authored-by: atheeshp <59333759+atheeshp@users.noreply.github.com> Co-authored-by: atheesh <atheesh@vitwit.com> Co-authored-by: atheeshp <59333759+atheeshp@users.noreply.github.com>
61 lines
1.6 KiB
Go
61 lines
1.6 KiB
Go
package baseapp
|
|
|
|
import (
|
|
"github.com/cosmos/cosmos-sdk/types"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
// TODO: Can be removed once we move all middleware tests into x/auth/middleware
|
|
// ref: #https://github.com/cosmos/cosmos-sdk/issues/10282
|
|
|
|
// CheckState is an exported method to be able to access baseapp's
|
|
// checkState in tests.
|
|
//
|
|
// This method is only accessible in baseapp tests.
|
|
func (app *BaseApp) CheckState() *state {
|
|
return app.checkState
|
|
}
|
|
|
|
// DeliverState is an exported method to be able to access baseapp's
|
|
// deliverState in tests.
|
|
//
|
|
// This method is only accessible in baseapp tests.
|
|
func (app *BaseApp) DeliverState() *state {
|
|
return app.deliverState
|
|
}
|
|
|
|
// CMS is an exported method to be able to access baseapp's cms in tests.
|
|
//
|
|
// This method is only accessible in baseapp tests.
|
|
func (app *BaseApp) CMS() types.CommitMultiStore {
|
|
return app.cms
|
|
}
|
|
|
|
// GetMaximumBlockGas return maximum blocks gas.
|
|
//
|
|
// This method is only accessible in baseapp tests.
|
|
func (app *BaseApp) GetMaximumBlockGas(ctx sdk.Context) uint64 {
|
|
return app.getMaximumBlockGas(ctx)
|
|
}
|
|
|
|
// GetName return name.
|
|
//
|
|
// This method is only accessible in baseapp tests.
|
|
func (app *BaseApp) GetName() string {
|
|
return app.name
|
|
}
|
|
|
|
// CreateQueryContext calls app's createQueryContext.
|
|
//
|
|
// This method is only accessible in baseapp tests.
|
|
func (app *BaseApp) CreateQueryContext(height int64, prove bool) (sdk.Context, error) {
|
|
return app.createQueryContext(height, prove)
|
|
}
|
|
|
|
// MinGasPrices returns minGasPrices.
|
|
//
|
|
// This method is only accessible in baseapp tests.
|
|
func (app *BaseApp) MinGasPrices() sdk.DecCoins {
|
|
return app.minGasPrices
|
|
}
|