|
|
|
@ -363,7 +363,7 @@ module.exports = class MetamaskController extends EventEmitter { |
|
|
|
|
// txController
|
|
|
|
|
cancelTransaction: nodeify(txController.cancelTransaction, txController), |
|
|
|
|
updateAndApproveTransaction: nodeify(txController.updateAndApproveTransaction, txController), |
|
|
|
|
retryTransaction: nodeify(txController.retryTransaction, txController), |
|
|
|
|
retryTransaction: nodeify(this.retryTransaction, this), |
|
|
|
|
|
|
|
|
|
// messageManager
|
|
|
|
|
signMessage: nodeify(this.signMessage, this), |
|
|
|
@ -574,6 +574,14 @@ module.exports = class MetamaskController extends EventEmitter { |
|
|
|
|
//
|
|
|
|
|
// Identity Management
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
async retryTransaction (txId, cb) { |
|
|
|
|
await this.txController.retryTransaction(txId) |
|
|
|
|
const state = await this.getState() |
|
|
|
|
return state |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
newUnsignedMessage (msgParams, cb) { |
|
|
|
|
const msgId = this.messageManager.addUnapprovedMessage(msgParams) |
|
|
|
|