aboutsummaryrefslogtreecommitdiff
path: root/src/js/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/index.js')
-rw-r--r--src/js/index.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/js/index.js b/src/js/index.js
index 5cd09b6..69f5eab 100644
--- a/src/js/index.js
+++ b/src/js/index.js
@@ -587,6 +587,20 @@
587 DOM.bip44coin.val(5); 587 DOM.bip44coin.val(5);
588 }, 588 },
589 }, 589 },
590 {
591 name: "Namecoin",
592 onSelect: function() {
593 network = bitcoin.networks.namecoin;
594 DOM.bip44coin.val(7);
595 },
596 },
597 {
598 name: "Peercoin",
599 onSelect: function() {
600 network = bitcoin.networks.peercoin;
601 DOM.bip44coin.val(6);
602 },
603 },
590 ] 604 ]
591 605
592 init(); 606 init();