File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed
apps/remix-ide/src/blockchain
libs/remix-lib/src/execution Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -490,8 +490,6 @@ export class Blockchain extends Plugin {
490
490
if ( txResult . receipt . status === false || txResult . receipt . status === '0x0' || txResult . receipt . status === 0 ) {
491
491
return finalCb ( `creation of ${ selectedContract . name } errored: transaction execution failed` )
492
492
}
493
- console . log ( 'inside createContract--txResult->' , txResult )
494
- console . log ( 'inside createContract--address->' , address )
495
493
finalCb ( null , selectedContract , address )
496
494
} )
497
495
}
@@ -1052,8 +1050,6 @@ export class Blockchain extends Plugin {
1052
1050
1053
1051
let address = null
1054
1052
if ( txResult && txResult . receipt ) {
1055
- console . log ( 'inside if txResult---blockchain file->' , txResult )
1056
- // There is no 'contractAddress' field in txResult
1057
1053
address = txResult . receipt . contractAddress
1058
1054
}
1059
1055
Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ export class TxRunnerWeb3 {
58
58
tx = await tryTillTxAvailable ( resp , this . getWeb3 ( ) )
59
59
currentDateTime = new Date ( ) ;
60
60
if ( isUserOp && contractAddress && ! receipt . contractAddress ) ( receipt as any ) . contractAddress = contractAddress
61
- console . log ( 'receipt--->' , receipt )
62
61
resolve ( {
63
62
receipt,
64
63
tx,
@@ -92,7 +91,6 @@ export class TxRunnerWeb3 {
92
91
} else {
93
92
try {
94
93
if ( tx . fromSmartAccount ) {
95
- // await this.sendUserOp(tx)
96
94
const { txHash, contractAddress } = await this . sendUserOp ( tx )
97
95
cb ( null , txHash , true , contractAddress )
98
96
} else {
You can’t perform that action at this time.
0 commit comments