fix(rpc-eth-types): incorrect error msg(; -> :) (#11503)

Signed-off-by: jsvisa <delweng@gmail.com>
This commit is contained in:
Delweng
2024-10-05 16:48:18 +08:00
committed by GitHub
parent 093b1a16df
commit 72865f1d83

View File

@ -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)]