Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
aurexav committed Dec 25, 2024
1 parent cf85cbc commit 5b3dcf3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion runtime/crab/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ sp_api::impl_runtime_apis! {
}

fn authorities() -> Vec<sp_consensus_aura::sr25519::AuthorityId> {
Aura::authorities().into_inner()
<pallet_aura::Authorities<Runtime>>::get().into_inner()
}
}

Expand Down
2 changes: 1 addition & 1 deletion runtime/darwinia/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ sp_api::impl_runtime_apis! {
}

fn authorities() -> Vec<sp_consensus_aura::sr25519::AuthorityId> {
Aura::authorities().into_inner()
<pallet_aura::Authorities<Runtime>>::get().into_inner()
}
}

Expand Down
2 changes: 1 addition & 1 deletion runtime/koi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ sp_api::impl_runtime_apis! {
}

fn authorities() -> Vec<sp_consensus_aura::sr25519::AuthorityId> {
Aura::authorities().into_inner()
<pallet_aura::Authorities<Runtime>>::get().into_inner()
}
}

Expand Down

0 comments on commit 5b3dcf3

Please sign in to comment.