We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e14037d commit 5c53c49Copy full SHA for 5c53c49
1 file changed
crates/account-abstraction-core-v2/src/infrastructure/base_node/validator.rs
@@ -45,7 +45,7 @@ impl UserOperationValidator for BaseNodeValidator {
45
return Err(anyhow::anyhow!("Timeout on requesting validation"));
46
}
47
Ok(Err(e)) => {
48
- return Err(anyhow::anyhow!("RPC error: {}", e));
+ return Err(anyhow::anyhow!("RPC error: {e}"));
49
50
Ok(Ok(v)) => v,
51
};
0 commit comments