We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db428f9 commit f57e137Copy full SHA for f57e137
nodes/parachain/src/command.rs
@@ -69,7 +69,11 @@ macro_rules! construct_async_run {
69
70
/// Parse command line arguments into service configuration.
71
pub(crate) fn run() -> sc_cli::Result<()> {
72
- let cli = Cli::from_args();
+ let mut cli = Cli::from_args();
73
+
74
+ // all full nodes should store request/responses, otherwise they'd basically be
75
+ // useless without it. https://docs.hyperbridge.network/developers/polkadot/pallet-ismp#offchain-indexing
76
+ cli.run.base.offchain_worker_params.indexing_enabled = true;
77
78
match &cli.subcommand {
79
Some(Subcommand::BuildSpec(cmd)) => {
0 commit comments