diff --git a/README.md b/README.md index f4dcde3..4d996e6 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ to use, host and modify. Additionally, the following features were added/changed (13 word mnemonics generated by MyMonero work as usual though). - import wallet fee was reduced. - backend correctly decodes RingCT transactions. + - support of testnet network added. ## Status diff --git a/html/js/config.js b/html/js/config.js index 5231a9e..beeaef0 100755 --- a/html/js/config.js +++ b/html/js/config.js @@ -1,6 +1,6 @@ var config = { apiUrl: "http://127.0.0.1:1984/", - testnet: false, + testnet: true, coinUnitPlaces: 12, txMinConfirms: 10, coinSymbol: 'XMR', diff --git a/src/YourMoneroRequests.cpp b/src/YourMoneroRequests.cpp index 9dc536f..0565d80 100644 --- a/src/YourMoneroRequests.cpp +++ b/src/YourMoneroRequests.cpp @@ -68,8 +68,8 @@ YourMoneroRequests::login(const shared_ptr session, const Bytes & body) { json j_request = body_to_json(body); - if (show_logs) - print_json_log("login request: ", j_request); +// if (show_logs) +// print_json_log("login request: ", j_request); string xmr_address = j_request["address"];