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
Currently, all exported functions are hard-coded in runtime.go. However, there is a need for a configurable approach to determine what should be exported and when.
Examples:
building wasm runtimes for benchmarking, which exports additional functions, whereas this is not necessary for development or release builds.
building wasm runtimes from templates with different consensus modules (aura, babe) configured.
The text was updated successfully, but these errors were encountered:
Currently, all exported functions are hard-coded in
runtime.go
. However, there is a need for a configurable approach to determine what should be exported and when.Examples:
wasm
runtimes for benchmarking, which exports additional functions, whereas this is not necessary for development or release builds.wasm
runtimes from templates with different consensus modules (aura
,babe
) configured.The text was updated successfully, but these errors were encountered: