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
I've noticed that the pallet, hashed_prefixes & child_tree arguments are not passed to the execute_block command when testing storage invariants with try-state. Here is my command:
Problem
I've noticed that the
pallet
,hashed_prefixes
&child_tree
arguments are not passed to theexecute_block
command when testing storage invariants withtry-state
. Here is my command:try-runtime \ --runtime ./target/release/wbuild/astar-runtime/astar_runtime.wasm \ execute-block \ --try-state DappStaking \ live --uri wss://rpc.astar.network:443 --pallet DappStaking
This log is always printed:
[2024-08-20T08:39:00Z INFO remote-ext] since no prefix is filtered, the data for all pallets will be downloaded
Solution
I suggest adjusting the following section by removing the
default
method:https://github.com/paritytech/try-runtime-cli/blob/60cfc452c4c1f5de0bcfa85e1e8dbba8ae8d3ebc/core/src/commands/execute_block.rs#L114C17-L120C18
The text was updated successfully, but these errors were encountered: