From b5581a8526bcddd3ca2dfca3b72a2be094e635c5 Mon Sep 17 00:00:00 2001 From: Abhishek Sinha Date: Sun, 4 Nov 2018 14:05:47 +0530 Subject: [PATCH] moved flo addresses to localbitcoinplusplus object and configured their properties --- supernode/index.html | 37 +++++++++++++++++++++++++++++++------ 1 file changed, 31 insertions(+), 6 deletions(-) diff --git a/supernode/index.html b/supernode/index.html index bab8315..3733d4a 100644 --- a/supernode/index.html +++ b/supernode/index.html @@ -7191,10 +7191,37 @@ wallets: {}, trade: {}, rpc: {}, - rm_configs: {}, - flocha: "https://testnet.flocha.in" + rm_configs: {} }; + Object.defineProperty(localbitcoinplusplus, 'flocha', { + value: "https://testnet.flocha.in", + writable: false, + configurable: false, + enumerable: false + }); + + Object.defineProperty(localbitcoinplusplus, 'MASTER_NODE', { + value: "023B9F60692A17FAC805D012C5C8ADA3DD19A980A3C5F0D8A5B3500CC54D6E8B75", + writable: false, + configurable: false, + enumerable: true + }); + + Object.defineProperty(localbitcoinplusplus, "RM_FLO_SENDING_ADDR", { + value: "oUbQYNBo7hWRcVN4dnx2ZQPfumfnTS7NsP", //C2832A5C3AEFFA1583379A67AB9B92CB7EC6566CCB35F00A9F1AF08EBD74B235 + writable: false, + configurable: false, + enumerable: true + }); + + Object.defineProperty(localbitcoinplusplus, "RM_FLO_RECEIVING_ADDR", { + value: "oVRq2nka1GtALQT8pbuLHAGjqAQ7PAo6uy", // 79F82A750FF2EAE51A50BE242043634B3DDE7ABE3B09732A7842A56CFE3C098E + writable: false, + configurable: false, + enumerable: true + }); + localbitcoinplusplus.privateKey = { isPrivateKey: function (key) { return ( @@ -7717,9 +7744,6 @@ +