diff --git a/index.html b/index.html
index afd4b90..0b0e113 100644
--- a/index.html
+++ b/index.html
@@ -11245,30 +11245,6 @@ ninja.wallets.paperwallet = {
}
},
- templateHtml: function (i) {
- var privateKeyLabel = ninja.translator.get("paperlabelprivatekey");
- if (ninja.wallets.paperwallet.encrypt) {
- privateKeyLabel = ninja.translator.get("paperlabelencryptedkey");
- }
-
- var walletHtml =
- "
" +
- "
" +
- "
" +
- "" + ninja.translator.get("paperlabelbitcoinaddress") + "" +
- "" +
- "
" +
- "
" +
- "" +
- "
" +
- "
" +
- "" + privateKeyLabel + "" +
- "" +
- "
" +
- "
";
- return walletHtml;
- },
-
showWallet: function (idPostFix, bitcoinAddress, privateKey) {
document.getElementById("btcaddress" + idPostFix).innerHTML = bitcoinAddress;
document.getElementById("btcprivwif" + idPostFix).innerHTML = privateKey;
diff --git a/src/ninja.paperwallet.js b/src/ninja.paperwallet.js
index 6c1d72f..c7ae7c5 100644
--- a/src/ninja.paperwallet.js
+++ b/src/ninja.paperwallet.js
@@ -94,30 +94,6 @@ ninja.wallets.paperwallet = {
}
},
- templateHtml: function (i) {
- var privateKeyLabel = ninja.translator.get("paperlabelprivatekey");
- if (ninja.wallets.paperwallet.encrypt) {
- privateKeyLabel = ninja.translator.get("paperlabelencryptedkey");
- }
-
- var walletHtml =
- "" +
- "
" +
- "
" +
- "" + ninja.translator.get("paperlabelbitcoinaddress") + "" +
- "" +
- "
" +
- "
" +
- "" +
- "
" +
- "
" +
- "" + privateKeyLabel + "" +
- "" +
- "
" +
- "
";
- return walletHtml;
- },
-
showWallet: function (idPostFix, bitcoinAddress, privateKey) {
document.getElementById("btcaddress" + idPostFix).innerHTML = bitcoinAddress;
document.getElementById("btcprivwif" + idPostFix).innerHTML = privateKey;