From a989f8b59913594db27fefaf43430697f381597a Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Sun, 14 Oct 2012 02:50:34 -0700 Subject: [PATCH] JS: Fix offer_create. --- js/remote.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/remote.js b/js/remote.js index 50f6c067..a669c91b 100644 --- a/js/remote.js +++ b/js/remote.js @@ -676,8 +676,6 @@ Transaction.prototype.offer_create = function (src, taker_pays, taker_gets, expi this.secret = this.account_secret(src); this.transaction.TransactionType = 'OfferCreate'; this.transaction.Account = this.account_default(src); - this.transaction.Amount = deliver_amount.to_json(); - this.transaction.Destination = dst_account; this.transaction.Fee = fees.offer.to_json(); this.transaction.TakerPays = taker_pays.to_json(); this.transaction.TakerGets = taker_gets.to_json();