Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nbaztec committed Mar 30, 2023
1 parent 946d70b commit b495092
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/rpc/src/eth/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -763,9 +763,9 @@ where
state_override.nonce,
);
} else if state_override.balance.is_some() || state_override.nonce.is_some() {
return Err(internal_err(format!(
"state override unsupported for balance and nonce"
)));
return Err(internal_err(
"state override unsupported for balance and nonce",
));
}

if let Some(code) = &state_override.code {
Expand Down

0 comments on commit b495092

Please sign in to comment.