move import test to wallet.py
This commit is contained in:
@@ -277,7 +277,6 @@ class Commands:
|
|||||||
return s.encode('utf8')
|
return s.encode('utf8')
|
||||||
|
|
||||||
def importprivkey(self, sec):
|
def importprivkey(self, sec):
|
||||||
assert self.wallet.can_import()
|
|
||||||
try:
|
try:
|
||||||
addr = self.wallet.import_key(sec,self.password)
|
addr = self.wallet.import_key(sec,self.password)
|
||||||
out = "Keypair imported: ", addr
|
out = "Keypair imported: ", addr
|
||||||
|
|||||||
@@ -288,6 +288,7 @@ class Abstract_Wallet(object):
|
|||||||
return account is not None
|
return account is not None
|
||||||
|
|
||||||
def import_key(self, sec, password):
|
def import_key(self, sec, password):
|
||||||
|
assert self.can_import()
|
||||||
try:
|
try:
|
||||||
pubkey = public_key_from_private_key(sec)
|
pubkey = public_key_from_private_key(sec)
|
||||||
address = public_key_to_bc_address(pubkey.decode('hex'))
|
address = public_key_to_bc_address(pubkey.decode('hex'))
|
||||||
|
|||||||
Reference in New Issue
Block a user