Add support for Bitcoin Testnet
This commit is contained in:
parent
76adb5b4e7
commit
1d93ce4b23
3 changed files with 8 additions and 2 deletions
|
@ -6363,8 +6363,9 @@ janin.currencies = [
|
||||||
janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "addr3"),
|
janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "addr3"),
|
||||||
janin.currency.createCurrency ("Marscoin", 0x32, 0xb2, "6", "T" , "addr8"),
|
janin.currency.createCurrency ("Marscoin", 0x32, 0xb2, "6", "T" , "addr8"),
|
||||||
janin.currency.createCurrency ("Peercoin", 0x37, 0xb7, "7", "[LK]" , "addr4"),
|
janin.currency.createCurrency ("Peercoin", 0x37, 0xb7, "7", "[LK]" , "addr4"),
|
||||||
janin.currency.createCurrency ("Vertcoin", 0x47, 0xc7, "7", "W" , "addr9")
|
janin.currency.createCurrency ("Vertcoin", 0x47, 0xc7, "7", "W" , "addr9"),
|
||||||
|
|
||||||
|
janin.currency.createCurrency ("Testnet Bitcoin", 0x6f, 0xef, "9", "c", null)
|
||||||
];
|
];
|
||||||
|
|
||||||
janin.selectedCurrency = janin.currencies[1];
|
janin.selectedCurrency = janin.currencies[1];
|
||||||
|
@ -8990,6 +8991,8 @@ document.getElementById("donateqrcode").style.display = "none";
|
||||||
var donatelist = document.getElementById("donatelist");
|
var donatelist = document.getElementById("donatelist");
|
||||||
var list = "<table>";
|
var list = "<table>";
|
||||||
for(i = 0; i < janin.currencies.length; i++) {
|
for(i = 0; i < janin.currencies.length; i++) {
|
||||||
|
if(janin.currencies[i].donate == null)
|
||||||
|
continue;
|
||||||
list += "<tr onmouseover='ninja.wallets.donate.displayQrCode("+i+", this)'>"
|
list += "<tr onmouseover='ninja.wallets.donate.displayQrCode("+i+", this)'>"
|
||||||
+"<td>"+janin.currencies[i].name+"</td>"
|
+"<td>"+janin.currencies[i].name+"</td>"
|
||||||
+"<td class='address'><a href='"+janin.currencies[i].name.toLowerCase()+":"+janin.currencies[i].donate+"'>"
|
+"<td class='address'><a href='"+janin.currencies[i].name.toLowerCase()+":"+janin.currencies[i].donate+"'>"
|
||||||
|
|
|
@ -63,8 +63,9 @@ janin.currencies = [
|
||||||
janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "addr3"),
|
janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "addr3"),
|
||||||
janin.currency.createCurrency ("Marscoin", 0x32, 0xb2, "6", "T" , "addr8"),
|
janin.currency.createCurrency ("Marscoin", 0x32, 0xb2, "6", "T" , "addr8"),
|
||||||
janin.currency.createCurrency ("Peercoin", 0x37, 0xb7, "7", "[LK]" , "addr4"),
|
janin.currency.createCurrency ("Peercoin", 0x37, 0xb7, "7", "[LK]" , "addr4"),
|
||||||
janin.currency.createCurrency ("Vertcoin", 0x47, 0xc7, "7", "W" , "addr9")
|
janin.currency.createCurrency ("Vertcoin", 0x47, 0xc7, "7", "W" , "addr9"),
|
||||||
|
|
||||||
|
janin.currency.createCurrency ("Testnet Bitcoin", 0x6f, 0xef, "9", "c", null)
|
||||||
];
|
];
|
||||||
|
|
||||||
janin.selectedCurrency = janin.currencies[1];
|
janin.selectedCurrency = janin.currencies[1];
|
||||||
|
|
|
@ -29,6 +29,8 @@ document.getElementById("donateqrcode").style.display = "none";
|
||||||
var donatelist = document.getElementById("donatelist");
|
var donatelist = document.getElementById("donatelist");
|
||||||
var list = "<table>";
|
var list = "<table>";
|
||||||
for(i = 0; i < janin.currencies.length; i++) {
|
for(i = 0; i < janin.currencies.length; i++) {
|
||||||
|
if(janin.currencies[i].donate == null)
|
||||||
|
continue;
|
||||||
list += "<tr onmouseover='ninja.wallets.donate.displayQrCode("+i+", this)'>"
|
list += "<tr onmouseover='ninja.wallets.donate.displayQrCode("+i+", this)'>"
|
||||||
+"<td>"+janin.currencies[i].name+"</td>"
|
+"<td>"+janin.currencies[i].name+"</td>"
|
||||||
+"<td class='address'><a href='"+janin.currencies[i].name.toLowerCase()+":"+janin.currencies[i].donate+"'>"
|
+"<td class='address'><a href='"+janin.currencies[i].name.toLowerCase()+":"+janin.currencies[i].donate+"'>"
|
||||||
|
|
Loading…
Add table
Reference in a new issue