diff --git a/client/rpc/src/eth/execute.rs b/client/rpc/src/eth/execute.rs index e07aefaec3..73c3ba1ac2 100644 --- a/client/rpc/src/eth/execute.rs +++ b/client/rpc/src/eth/execute.rs @@ -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 {