Skip to content
This repository was archived by the owner on Mar 20, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion task/task-darwinia-crab/src/chains/crab.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ mod s2s_messages {
.into();
let call_weight = call.get_dispatch_info().weight;
let genesis_hash = *self.message_lane.target_client.genesis_hash();
let runtime_version = self.message_lane.source_client.runtime_version().await?;
let runtime_version = self.message_lane.target_client.runtime_version().await?;
let transaction = DarwiniaChain::sign_transaction(SignParam {
spec_version: runtime_version.spec_version,
transaction_version: runtime_version.transaction_version,
Expand Down
2 changes: 1 addition & 1 deletion task/task-darwinia-crab/src/chains/darwinia.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ mod s2s_messages {
.into();
let call_weight = call.get_dispatch_info().weight;
let genesis_hash = *self.message_lane.target_client.genesis_hash();
let runtime_version = self.message_lane.source_client.runtime_version().await?;
let runtime_version = self.message_lane.target_client.runtime_version().await?;
let transaction = CrabChain::sign_transaction(SignParam {
spec_version: runtime_version.spec_version,
transaction_version: runtime_version.transaction_version,
Expand Down