Default coin selection is BTC - Bitcoin

This commit is contained in:
Ian Coleman
2017-08-06 07:58:28 +10:00
parent 4d9c184a84
commit 7b742f87d3

View File

@@ -818,6 +818,9 @@
var option = $("<option>");
option.attr("value", i);
option.text(network.name);
if (network.name == "BTC - Bitcoin") {
option.prop("selected", true);
}
DOM.phraseNetwork.append(option);
}
}