From ce7e9cf41491a9cf3d9b011c067ae26e1da5291a Mon Sep 17 00:00:00 2001 From: Aniket-Engg Date: Tue, 17 Dec 2019 16:20:25 +0530 Subject: [PATCH] minor fix --- src/app/tabs/runTab/model/recorder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tabs/runTab/model/recorder.js b/src/app/tabs/runTab/model/recorder.js index 855e314845..5d8ef594fc 100644 --- a/src/app/tabs/runTab/model/recorder.js +++ b/src/app/tabs/runTab/model/recorder.js @@ -74,7 +74,7 @@ class Recorder { if (call) return const rawAddress = executionContext.isVM() ? txResult.result.createdAddress : txResult.result.contractAddress - if (!address) return // not a contract creation + if (!rawAddress) return // not a contract creation const stringAddress = this.addressToString(rawAddress) const address = ethutil.toChecksumAddress(stringAddress) // save back created addresses for the convertion from tokens to real adresses