Skip to content

Commit

Permalink
Update Substrate/Polkadot/Cumulus references (paritytech#1364)
Browse files Browse the repository at this point in the history
cumulus: b468d0c33eac0adda27080b59ea9b5986ce6469b
polkadot: 827792c
substrate: 666f39b

bump serde_json to 1.0.79

sync changes from paritytech/substrate#11022

fixed clippy warnings

Signed-off-by: acatangiu <[email protected]>
  • Loading branch information
acatangiu authored and serban300 committed Apr 9, 2024
1 parent 49b8485 commit 0dd2abd
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 13 deletions.
2 changes: 1 addition & 1 deletion bridges/bin/millau/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
[dependencies]
clap = { version = "3.1", features = ["derive"] }
jsonrpc-core = "18.0"
serde_json = "1.0.59"
serde_json = "1.0.79"

# Bridge dependencies

Expand Down
2 changes: 1 addition & 1 deletion bridges/bin/millau/node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ pub fn run() -> sc_cli::Result<()> {
let runner = cli.create_runner(cmd)?;
runner.async_run(|config| {
let PartialComponents { client, task_manager, backend, .. } = new_partial(&config)?;
Ok((cmd.run(client, backend), task_manager))
Ok((cmd.run(client, backend, None), task_manager))
})
},
Some(Subcommand::Inspect(cmd)) => {
Expand Down
8 changes: 5 additions & 3 deletions bridges/bin/rialto-parachain/node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,11 @@ pub fn run() -> Result<()> {
})
},
Some(Subcommand::Revert(cmd)) => {
construct_async_run!(|components, cli, cmd, config| Ok(
cmd.run(components.client, components.backend)
))
construct_async_run!(|components, cli, cmd, config| Ok(cmd.run(
components.client,
components.backend,
None
)))
},
Some(Subcommand::ExportGenesisState(params)) => {
let mut builder = sc_cli::LoggerBuilder::new("");
Expand Down
2 changes: 1 addition & 1 deletion bridges/bin/rialto/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jsonrpc-core = "18.0"
kvdb = "0.11"
kvdb-rocksdb = "0.15"
lru = "0.7"
serde_json = "1.0.59"
serde_json = "1.0.79"
thiserror = "1.0"

# Bridge dependencies
Expand Down
2 changes: 1 addition & 1 deletion bridges/bin/rialto/node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ pub fn run() -> sc_cli::Result<()> {
runner.async_run(|mut config| {
let (client, backend, _, task_manager) =
polkadot_service::new_chain_ops(&mut config, None).map_err(service_error)?;
Ok((cmd.run(client, backend), task_manager))
Ok((cmd.run(client, backend, None), task_manager))
})
},
Some(Subcommand::Inspect(cmd)) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,9 @@ impl RelayHeadersAndMessages {
LeftToRightMessageLane,
Left,
>(
left_client.clone(),
left_client,
TransactionParams {
signer: left_messages_pallet_owner.clone(),
signer: left_messages_pallet_owner,
mortality: left_transactions_mortality,
},
left_to_right_metrics
Expand Down Expand Up @@ -366,9 +366,9 @@ impl RelayHeadersAndMessages {
RightToLeftMessageLane,
Right,
>(
right_client.clone(),
right_client,
TransactionParams {
signer: right_messages_pallet_owner.clone(),
signer: right_messages_pallet_owner,
mortality: right_transactions_mortality,
},
right_to_left_metrics
Expand Down
4 changes: 2 additions & 2 deletions bridges/relays/bin-substrate/src/cli/swap_tokens.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ impl SwapTokens {
_,
>(
&source_client,
target_to_source_conversion_rate_override.clone(),
target_to_source_conversion_rate_override,
ESTIMATE_SOURCE_TO_TARGET_MESSAGE_FEE_METHOD,
SOURCE_TO_TARGET_LANE_ID,
bp_message_dispatch::MessagePayload {
Expand Down Expand Up @@ -384,7 +384,7 @@ impl SwapTokens {
_,
>(
&target_client,
source_to_target_conversion_rate_override.clone(),
source_to_target_conversion_rate_override,
ESTIMATE_TARGET_TO_SOURCE_MESSAGE_FEE_METHOD,
TARGET_TO_SOURCE_LANE_ID,
claim_swap_message.clone(),
Expand Down
1 change: 1 addition & 0 deletions bridges/relays/client-substrate/src/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ impl<C: Chain> UnsignedTransaction<C> {
}

/// Set transaction tip.
#[must_use]
pub fn tip(mut self, tip: C::Balance) -> Self {
self.tip = tip;
self
Expand Down
1 change: 1 addition & 0 deletions bridges/relays/utils/src/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ impl MetricsParams {
}

/// Do not expose metrics.
#[must_use]
pub fn disable(mut self) -> Self {
self.address = None;
self
Expand Down
1 change: 1 addition & 0 deletions bridges/relays/utils/src/relay_loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ pub struct LoopMetrics<SC, TC, LM> {

impl<SC, TC, LM> Loop<SC, TC, LM> {
/// Customize delay between reconnect attempts.
#[must_use]
pub fn reconnect_delay(mut self, reconnect_delay: Duration) -> Self {
self.reconnect_delay = reconnect_delay;
self
Expand Down

0 comments on commit 0dd2abd

Please sign in to comment.