You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At present #22, only partial separation has been made for dynamic link branch of wasmd, so consider how to do this.
The following methods were used for implementation.
In #36, moved dynamic_link branch functionality to wasmplus.
It is implemented in the following way.
Define the interface of the function defined in x/wasmplus/keeper.go in x/wasm/keeper.go.
In x/wasm, functions and variables to be exposed to the outside world are defined as other variables in exported_*.go, in order to reduce differences from the original.
Access the functions defined in x/wasmplus/api.go via the interface in x/wasm/keeper.go.
The text was updated successfully, but these errors were encountered:
At present #22, only partial separation has been made for dynamic link branch of wasmd, so consider how to do this.
The following methods were used for implementation.
In #36, moved dynamic_link branch functionality to wasmplus.
It is implemented in the following way.
x/wasmplus/keeper.go
inx/wasm/keeper.go.
x/wasm
, functions and variables to be exposed to the outside world are defined as other variables in exported_*.go, in order to reduce differences from the original.x/wasmplus/api.go
via the interface inx/wasm/keeper.go
.The text was updated successfully, but these errors were encountered: