Skip to content

Commit

Permalink
fix: id not _id
Browse files Browse the repository at this point in the history
  • Loading branch information
dandanlen committed Sep 27, 2023
1 parent 337f663 commit 4fdc894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion state-chain/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ impl frame_support::traits::OnRuntimeUpgrade for CustomUpgrade {
PolkadotBroadcaster::clean_up_broadcast_storage(id);
}
// then the rotation
for (_id, (ref mut api_call, _signature)) in api_calls.iter_mut() {
for (id, (ref mut api_call, _signature)) in api_calls.iter_mut() {
match api_call {
cf_chains::dot::api::PolkadotApi::RotateVaultProxy(ref mut ext_builder) => {
ext_builder.force_nonce(nonce);
Expand Down

0 comments on commit 4fdc894

Please sign in to comment.