mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix delegate call function reference 2
This commit is contained in:
parent
1cabeb2fc4
commit
21e7331111
@ -249,7 +249,7 @@ IdentityStore.prototype.addUnconfirmedTransaction = function (txParams, onTxDone
|
|||||||
if (txParams.to) {
|
if (txParams.to) {
|
||||||
query.getCode(txParams.to, (err, result) => {
|
query.getCode(txParams.to, (err, result) => {
|
||||||
if (err) return cb(err)
|
if (err) return cb(err)
|
||||||
var containsDelegateCall = this.checkForDelegateCall(result)
|
var containsDelegateCall = self.checkForDelegateCall(result)
|
||||||
txData.containsDelegateCall = containsDelegateCall
|
txData.containsDelegateCall = containsDelegateCall
|
||||||
cb()
|
cb()
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user