mirror of
https://github.com/osmosis-labs/osmosis.git
synced 2025-07-21 23:48:56 +00:00
chore: Tx post-handler example snippet #3194
This commit is contained in:

committed by
GitHub

parent
8cd07fdd28
commit
2620afd79a
@ -267,6 +267,8 @@ func NewOsmosisApp(
|
||||
app.IBCKeeper,
|
||||
),
|
||||
)
|
||||
// Uncomment to enable postHandlers:
|
||||
// app.SetPostHandler(NewTxPostHandler())
|
||||
app.SetEndBlocker(app.EndBlocker)
|
||||
|
||||
// Register snapshot extensions to enable state-sync for wasm.
|
||||
|
9
app/tx_post_handler.go
Normal file
9
app/tx_post_handler.go
Normal file
@ -0,0 +1,9 @@
|
||||
package app
|
||||
|
||||
import (
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
)
|
||||
|
||||
func NewTxPostHandler() sdk.AnteHandler {
|
||||
panic("not implemented")
|
||||
}
|
Reference in New Issue
Block a user