Fix TransactionPrecompileVerification RPC error (#29490)

This commit is contained in:
Tyera 2023-01-04 12:46:13 -07:00 committed by GitHub
parent 023509ff1b
commit c479a6409a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ impl From<RpcCustomError> for Error {
},
RpcCustomError::TransactionPrecompileVerificationFailure(e) => Self {
code: ErrorCode::ServerError(
JSON_RPC_SERVER_ERROR_TRANSACTION_SIGNATURE_VERIFICATION_FAILURE,
JSON_RPC_SERVER_ERROR_TRANSACTION_PRECOMPILE_VERIFICATION_FAILURE,
),
message: format!("Transaction precompile verification failure {e:?}"),
data: None,