From f106d4b1a295baef160d14224ce600d2d99a5e9c Mon Sep 17 00:00:00 2001 From: Stefan Thomas Date: Fri, 27 Sep 2013 09:33:43 +0200 Subject: [PATCH] Fix destination tag type issue. Fixes #1067. --- src/js/tabs/send.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/tabs/send.js b/src/js/tabs/send.js index 0b1fd15cf..9b880d62d 100644 --- a/src/js/tabs/send.js +++ b/src/js/tabs/send.js @@ -657,7 +657,7 @@ SendTab.prototype.angular = function (module) if (!$scope.send.bitcoin) { // Destination tag - tx.destination_tag(dt); + tx.destination_tag(+dt); tx.payment($id.account, addr, amount.to_json()); } else {