Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

chore: fix typo in errors.ts #3268

Merged
merged 1 commit into from
Jun 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/chains/ethereum/utils/src/errors/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ export const INTRINSIC_GAS_TOO_LOW = "intrinsic gas too low";
export const GAS_LIMIT = "exceeds block gas limit";

/**
* Prefix for a single VM Exception occuring when running a transaction or block
* Prefix for a single VM Exception occurring when running a transaction or block
*/
export const VM_EXCEPTION = "VM Exception while processing transaction: ";

/**
* Prefix for multiple VM Exceptions occuring when running transactions or a block
* Prefix for multiple VM Exceptions occurring when running transactions or a block
*/
export const VM_EXCEPTIONS =
"Multiple VM Exceptions while processing transactions: : \n\n";
Expand Down