PaperWallet sould expose also private key in text form

This commit is contained in:
b00lean 2014-11-28 11:54:07 +01:00
parent 6cad61a76d
commit 1630e5a728
1 changed files with 6 additions and 0 deletions

View File

@ -35,6 +35,11 @@ public interface IPaperWallet {
*/
public String getAddress();
/**
* Returns private key - used when printing paper wallet
* @return
*/
public String getPrivateKey();
/**
* Attachment extension (ie "zip")
* @return
@ -53,4 +58,5 @@ public interface IPaperWallet {
*/
public String getMessage();
}