pull/3951/head
Oleksii Kosynskyi 1 year ago
parent fb2af3ac86
commit e1e2ed4e61
No known key found for this signature in database
GPG Key ID: B4A8D3CCE22EA65E
  1. 12
      libs/remix-debug/src/init.ts

@ -39,8 +39,8 @@ class Web3DebugPlugin extends Web3PluginBase {
method: 'debug_preimage', method: 'debug_preimage',
params: [key] params: [key]
}) })
.then(result => cb(null, result)) .then(result => cb(null, result))
.catch(error => cb(error)) .catch(error => cb(error))
} }
public traceTransaction(txHash, options, cb) { public traceTransaction(txHash, options, cb) {
@ -48,8 +48,8 @@ class Web3DebugPlugin extends Web3PluginBase {
method: 'debug_traceTransaction', method: 'debug_traceTransaction',
params: [txHash, options] params: [txHash, options]
}) })
.then(result => cb(null, result)) .then(result => cb(null, result))
.catch(error => cb(error)) .catch(error => cb(error))
} }
public storageRangeAt(txBlockHash, txIndex, address, start, maxSize, cb) { public storageRangeAt(txBlockHash, txIndex, address, start, maxSize, cb) {
@ -57,7 +57,7 @@ class Web3DebugPlugin extends Web3PluginBase {
method: 'debug_storageRangeAt', method: 'debug_storageRangeAt',
params: [txBlockHash, txIndex, address, start, maxSize] params: [txBlockHash, txIndex, address, start, maxSize]
}) })
.then(result => cb(null, result)) .then(result => cb(null, result))
.catch(error => cb(error)) .catch(error => cb(error))
} }
} }

Loading…
Cancel
Save