From 1565f3f715c3b4e77550ad8b546e58f2713662a6 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Sat, 1 Mar 2025 00:32:04 +0200 Subject: [PATCH 1/2] Update get.ts --- src/commands/event/get.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/event/get.ts b/src/commands/event/get.ts index 54e5df2..b92497f 100644 --- a/src/commands/event/get.ts +++ b/src/commands/event/get.ts @@ -14,14 +14,14 @@ export default class GetCommand extends NetworkCommand { required: false, default: '1', description: - 'Start of the block number. Can be a positive number, a negative number, or "latest" (1 by default). A negative number is interpreted as substracted from the current block number.', + 'Start of the block number. Can be a positive number, a negative number, or "latest" (1 by default). A negative number is interpreted as subtracted from the current block number.', }), to: flags.string({ char: 't', required: false, default: 'latest', description: - 'End of the block range. Can be a positive number, a negative number, or "latest" (default). A negative number is interpreted as substracted from the current block number.', + 'End of the block range. Can be a positive number, a negative number, or "latest" (default). A negative number is interpreted as subtracted from the current block number.', }), json: flags.boolean({ description: 'Print events in JSON format', From 1055571bc48d08d079ea07e94a3100e0ae35a93a Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Sat, 1 Mar 2025 00:32:30 +0200 Subject: [PATCH 2/2] Update Proxy.sol --- test/files/contracts/Proxy.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/files/contracts/Proxy.sol b/test/files/contracts/Proxy.sol index 86fd263..41c136f 100644 --- a/test/files/contracts/Proxy.sol +++ b/test/files/contracts/Proxy.sol @@ -135,7 +135,7 @@ contract Proxy { } // If no returned message exists, emit a default error message. Otherwise, emit the error message if (bytes(message).length == 0) - emit StorageException(app_exec_id, "No error recieved"); + emit StorageException(app_exec_id, "No error received"); else emit StorageException(app_exec_id, message); }