Skip to content

Commit 54045f1

Browse files
committed
linting
1 parent eb1b1c5 commit 54045f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/remix-lib/src/execution/txRunnerWeb3.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ export class TxRunnerWeb3 {
5050
const receipt = await tryTillReceiptAvailable(resp, this.getWeb3())
5151
tx = await tryTillTxAvailable(resp, this.getWeb3())
5252
if (isCreation && !receipt.contractAddress) {
53-
// if it is a isCreation, contractAddress should be defined.
53+
// if it is a isCreation, contractAddress should be defined.
5454
// if it's not the case look for the event ContractCreated(uint256,address,uint256,bytes32) and extract the address
5555
// topic id: 0xa1fb700aaee2ae4a2ff6f91ce7eba292f89c2f5488b8ec4c5c5c8150692595c3
5656
if (receipt.logs && receipt.logs.length) {
5757
receipt.logs.map((log) => {
58-
if (log.topics[0] === '0xa1fb700aaee2ae4a2ff6f91ce7eba292f89c2f5488b8ec4c5c5c8150692595c3') {
58+
if (log.topics[0] === '0xa1fb700aaee2ae4a2ff6f91ce7eba292f89c2f5488b8ec4c5c5c8150692595c3') {
5959
(receipt as any).contractAddress = toChecksumAddress(normalizeHexAddress(toHex(log.topics[2])))
6060
}
6161
})

0 commit comments

Comments
 (0)