From a5efd959a05de96ac94fd21c72a150ab289e2f30 Mon Sep 17 00:00:00 2001 From: Thabokani <149070269+Thabokani@users.noreply.github.com> Date: Fri, 19 Jan 2024 16:08:09 +0800 Subject: [PATCH] fix typo in apps/remix-ide/src/app/tabs/runTab/model/recorder.js --- apps/remix-ide/src/app/tabs/runTab/model/recorder.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/remix-ide/src/app/tabs/runTab/model/recorder.js b/apps/remix-ide/src/app/tabs/runTab/model/recorder.js index f1d6739117..01c87185b8 100644 --- a/apps/remix-ide/src/app/tabs/runTab/model/recorder.js +++ b/apps/remix-ide/src/app/tabs/runTab/model/recorder.js @@ -84,7 +84,7 @@ class Recorder extends Plugin { const rawAddress = txResult.receipt.contractAddress if (!rawAddress) return // not a contract creation const address = addressToString(rawAddress) - // save back created addresses for the convertion from tokens to real adresses + // save back created addresses for the conversion from tokens to real adresses this.data._createdContracts[address] = timestamp this.data._createdContractsReverse[timestamp] = address }) @@ -279,7 +279,7 @@ class Recorder extends Plugin { } if (rawAddress) { const address = addressToString(rawAddress) - // save back created addresses for the convertion from tokens to real adresses + // save back created addresses for the conversion from tokens to real adresses this.data._createdContracts[address] = tx.timestamp this.data._createdContractsReverse[tx.timestamp] = address newContractFn(abi, address, record.contractName)