|
|
@ -59,7 +59,6 @@ module.exports = class TransactionController extends EventEmitter { |
|
|
|
this.pendingTxTracker = new PendingTransactionTracker({ |
|
|
|
this.pendingTxTracker = new PendingTransactionTracker({ |
|
|
|
provider: this.provider, |
|
|
|
provider: this.provider, |
|
|
|
nonceTracker: this.nonceTracker, |
|
|
|
nonceTracker: this.nonceTracker, |
|
|
|
retryTimePeriod: 86400000, // Retry 3500 blocks, or about 1 day.
|
|
|
|
|
|
|
|
publishTransaction: (rawTx) => this.query.sendRawTransaction(rawTx), |
|
|
|
publishTransaction: (rawTx) => this.query.sendRawTransaction(rawTx), |
|
|
|
getPendingTransactions: this.txStateManager.getPendingTransactions.bind(this.txStateManager), |
|
|
|
getPendingTransactions: this.txStateManager.getPendingTransactions.bind(this.txStateManager), |
|
|
|
getCompletedTransactions: this.txStateManager.getConfirmedTransactions.bind(this.txStateManager), |
|
|
|
getCompletedTransactions: this.txStateManager.getConfirmedTransactions.bind(this.txStateManager), |
|
|
|