-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(wasmbinding)!: remove wasmbinding custom executors #1766
Changes from 2 commits
b16b603
ff8360a
173a679
2c302a7
e267514
a0dfd66
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,8 +43,6 @@ import ( | |
"github.com/prometheus/client_golang/prometheus" | ||
"github.com/rakyll/statik/fs" | ||
"github.com/spf13/cast" | ||
|
||
wasmbinding "github.com/NibiruChain/nibiru/wasmbinding" | ||
) | ||
|
||
const ( | ||
|
@@ -115,15 +113,6 @@ func GetWasmOpts(nibiru NibiruApp, appOpts servertypes.AppOptions) []wasmkeeper. | |
wasmOpts = append(wasmOpts, wasmkeeper.WithVMCacheMetrics(prometheus.DefaultRegisterer)) | ||
} | ||
|
||
// Add the bindings to the app's set of []wasmkeeper.Option. | ||
wasmOpts = append(wasmOpts, wasmbinding.NibiruWasmOptions( | ||
nibiru.GRPCQueryRouter(), | ||
nibiru.appCodec, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The stargate queries are still supposed to be there. If that part is removed, contracts can't use the query server at all. So the only part to remove here is the keeper executor stuff, not the entire querier |
||
nibiru.PerpKeeperV2, | ||
nibiru.SudoKeeper, | ||
nibiru.OracleKeeper, | ||
)...) | ||
|
||
return wasmOpts | ||
} | ||
|
||
|
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change breaks the links for me