Skip to content

Commit

Permalink
Small style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tdimitrov committed Oct 20, 2023
1 parent 3c89059 commit 15b5069
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions polkadot/node/subsystem-util/src/vstaging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,10 @@ pub async fn get_disabled_validators_with_fallback<Sender: SubsystemSender<Runti
)
.await
{
let r = request_disabled_validators(relay_parent, sender)
request_disabled_validators(relay_parent, sender)
.await
.await
.map_err(Error::Oneshot)??;

r
.map_err(Error::Oneshot)??
} else {
gum::debug!(target: LOG_TARGET, "Runtime doesn't support `DisabledValidators` - continuing with an empty disabled validators set");
vec![]
Expand Down

0 comments on commit 15b5069

Please sign in to comment.