Skip to content

Commit

Permalink
Fix TransactionPrecompileVerification RPC error (solana-labs#29490)
Browse files Browse the repository at this point in the history
  • Loading branch information
CriesofCarrots authored and gnapoli23 committed Jan 10, 2023
1 parent 4539182 commit a98e7cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc-client-api/src/custom_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit a98e7cd

Please sign in to comment.