testnet network set as default network,

pull/2/head
moneroexamples 7 years ago
parent 123619a269
commit 4243baca4d

@ -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

@ -1,6 +1,6 @@
var config = {
apiUrl: "http://127.0.0.1:1984/",
testnet: false,
testnet: true,
coinUnitPlaces: 12,
txMinConfirms: 10,
coinSymbol: 'XMR',

@ -68,8 +68,8 @@ YourMoneroRequests::login(const shared_ptr<Session> 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"];

Loading…
Cancel
Save