From 70a3f102f9ac1ba90ba7821c39d8502c9914098f Mon Sep 17 00:00:00 2001 From: jsvisa Date: Sat, 5 Oct 2024 16:31:24 +0800 Subject: [PATCH] fix(rpc-eth-types): incorrect error msg(; -> :) Signed-off-by: jsvisa --- crates/rpc/rpc-eth-types/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rpc/rpc-eth-types/src/error.rs b/crates/rpc/rpc-eth-types/src/error.rs index 10fa3b716021..212fca36d9c9 100644 --- a/crates/rpc/rpc-eth-types/src/error.rs +++ b/crates/rpc/rpc-eth-types/src/error.rs @@ -365,7 +365,7 @@ pub enum RpcInvalidTransactionError { PrecompileOutOfGas(u64), /// An operand to an opcode was invalid or out of range. /// Contains the gas limit. - #[error("out of gas: invalid operand to an opcode; {0}")] + #[error("out of gas: invalid operand to an opcode: {0}")] InvalidOperandOutOfGas(u64), /// Thrown if executing a transaction failed during estimate/call #[error(transparent)]