|
@ -199,8 +199,8 @@ class Commands: |
|
|
t = Transaction(tx) |
|
|
t = Transaction(tx) |
|
|
t.deserialize() |
|
|
t.deserialize() |
|
|
if privkey: |
|
|
if privkey: |
|
|
pubkey = bitcoin.public_key_from_private_key(sec) |
|
|
pubkey = bitcoin.public_key_from_private_key(privkey) |
|
|
t.sign({pubkey:sec}) |
|
|
t.sign({pubkey:privkey}) |
|
|
else: |
|
|
else: |
|
|
self.wallet.sign_transaction(t, self.password) |
|
|
self.wallet.sign_transaction(t, self.password) |
|
|
return t |
|
|
return t |
|
|