Update execution/src/errors.rs

Co-authored-by: refcell.eth <abigger87@gmail.com>
This commit is contained in:
SFYLL 2023-03-10 17:47:34 +01:00 committed by GitHub
parent bb03d053b4
commit 11207eb7b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ pub enum ExecutionError {
IncorrectRpcNetwork(),
#[error("Invalid base gas fee helios {0} vs rpc endpoint {1} at block {2}")]
InvalidBaseGaseFee(U256, U256, u64),
#[error("Invalid gas ratio of helios {0} vs rpc endpoint {1} at block {2}")]
#[error("Invalid gas used ratio of helios {0} vs rpc endpoint {1} at block {2}")]
InvalidGasUsedRatio(f64, f64, u64),
}