diff --git a/js/models/TxProposal.js b/js/models/TxProposal.js index 5f806f8bb..ae9de2dd9 100644 --- a/js/models/TxProposal.js +++ b/js/models/TxProposal.js @@ -37,7 +37,6 @@ function TxProposal(opts) { this.comment = opts.comment || null; this.readonly = opts.readonly || null; this.merchant = opts.merchant || null; - this.altCurrency = opts.altCurrency || null; this._sync(); } diff --git a/test/PayPro.js b/test/PayPro.js index 8a2cd58ea..c8a19bb7d 100644 --- a/test/PayPro.js +++ b/test/PayPro.js @@ -83,8 +83,6 @@ describe('PayPro (in Wallet) model', function() { c.network.getHexNonces = sinon.stub(); c.network.send = sinon.stub(); - Wallet._newRateService = sinon.stub().returns(null); - return new Wallet(c); } diff --git a/test/Wallet.js b/test/Wallet.js index 4412cae69..0a4f25890 100644 --- a/test/Wallet.js +++ b/test/Wallet.js @@ -120,8 +120,6 @@ describe('Wallet model', function() { c.networkName = walletConfig.networkName; c.version = '0.0.1'; - Wallet._newRateService = sinon.stub().returns(null); - return new Wallet(c); }