We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cd07fd commit 2620afdCopy full SHA for 2620afd
app/app.go
@@ -267,6 +267,8 @@ func NewOsmosisApp(
267
app.IBCKeeper,
268
),
269
)
270
+ // Uncomment to enable postHandlers:
271
+ // app.SetPostHandler(NewTxPostHandler())
272
app.SetEndBlocker(app.EndBlocker)
273
274
// Register snapshot extensions to enable state-sync for wasm.
app/tx_post_handler.go
@@ -0,0 +1,9 @@
1
+package app
2
+
3
+import (
4
+ sdk "github.com/cosmos/cosmos-sdk/types"
5
+)
6
7
+func NewTxPostHandler() sdk.AnteHandler {
8
+ panic("not implemented")
9
+}
0 commit comments