Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Build with statement-store
Browse files Browse the repository at this point in the history
  • Loading branch information
arkpar committed Apr 3, 2023
1 parent 6bdcf1f commit 44b166d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ where
config: parachain_config,
client,
transaction_pool,
statement_store: None,
spawn_handle,
import_queue,
block_announce_validator_builder: Some(Box::new(block_announce_validator_builder)),
Expand Down
2 changes: 2 additions & 0 deletions parachain-template/node/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ pub fn new_partial(
keystore_container,
task_manager,
transaction_pool,
statement_store: None,
select_chain: (),
other: (block_import, telemetry, telemetry_worker_handle),
})
Expand Down Expand Up @@ -210,6 +211,7 @@ async fn start_node_impl(
rpc_builder,
client: client.clone(),
transaction_pool: transaction_pool.clone(),
statement_store: None,
task_manager: &mut task_manager,
config: parachain_config,
keystore: params.keystore_container.keystore(),
Expand Down
4 changes: 4 additions & 0 deletions polkadot-parachain/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ where
keystore_container,
task_manager,
transaction_pool,
statement_store: None,
select_chain: (),
other: (block_import, telemetry, telemetry_worker_handle),
};
Expand Down Expand Up @@ -409,6 +410,7 @@ where
rpc_builder,
client: client.clone(),
transaction_pool: transaction_pool.clone(),
statement_store: None,
task_manager: &mut task_manager,
config: parachain_config,
keystore: params.keystore_container.keystore(),
Expand Down Expand Up @@ -609,6 +611,7 @@ where
rpc_builder,
client: client.clone(),
transaction_pool: transaction_pool.clone(),
statement_store: None,
task_manager: &mut task_manager,
config: parachain_config,
keystore: params.keystore_container.keystore(),
Expand Down Expand Up @@ -1379,6 +1382,7 @@ where
rpc_builder,
client: client.clone(),
transaction_pool: transaction_pool.clone(),
statement_store: None,
task_manager: &mut task_manager,
config: parachain_config,
keystore: params.keystore_container.keystore(),
Expand Down
2 changes: 2 additions & 0 deletions test/service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ pub fn new_partial(
keystore_container,
task_manager,
transaction_pool,
statement_store: None,
select_chain: (),
other: block_import,
};
Expand Down Expand Up @@ -337,6 +338,7 @@ where
rpc_builder,
client: client.clone(),
transaction_pool: transaction_pool.clone(),
statement_store: None,
task_manager: &mut task_manager,
config: parachain_config,
keystore: params.keystore_container.keystore(),
Expand Down

0 comments on commit 44b166d

Please sign in to comment.