From e78afe69b41c53adf01decbdb0ba4001cb4afdf0 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 26 Dec 2018 11:54:03 -0500 Subject: [PATCH] remove unused method pendingTransactions --- src/universal-dapp.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/universal-dapp.js b/src/universal-dapp.js index 6728ec7a23..a463f04aee 100644 --- a/src/universal-dapp.js +++ b/src/universal-dapp.js @@ -165,10 +165,6 @@ UniversalDApp.prototype.getBalanceInEther = function (address, callback) { }) } -UniversalDApp.prototype.pendingTransactions = function () { - return this.txRunner.pendingTxs -} - UniversalDApp.prototype.pendingTransactionsCount = function () { return Object.keys(this.txRunner.pendingTxs).length }