From d68c264b67a1450efd8015dcbd6d3630bb8afd61 Mon Sep 17 00:00:00 2001 From: Paul Shapiro Date: Wed, 29 Aug 2018 16:57:32 -0400 Subject: [PATCH] cryptonote_utils/decode_address: added missing bool parse --- cryptonote_utils/cryptonote_utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptonote_utils/cryptonote_utils.js b/cryptonote_utils/cryptonote_utils.js index 696b8de..2ed7aff 100644 --- a/cryptonote_utils/cryptonote_utils.js +++ b/cryptonote_utils/cryptonote_utils.js @@ -240,7 +240,7 @@ var cnUtil = function(currencyConfig) spend: ret.pub_spendKey_string, view: ret.pub_viewKey_string, intPaymentId: ret.paymentID_string, // may be undefined - isSubaddress: ret.isSubaddress + isSubaddress: ret_val_boolstring_to_bool(ret.isSubaddress) } };