mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 07:23:25 +00:00
fix #1688
This commit is contained in:
parent
11a6917ade
commit
76bf8085fd
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ class Commands:
|
||||||
def broadcast(self, tx, timeout=10):
|
def broadcast(self, tx, timeout=10):
|
||||||
"""Broadcast a transaction to the network. """
|
"""Broadcast a transaction to the network. """
|
||||||
t = Transaction(tx)
|
t = Transaction(tx)
|
||||||
return self.network.broadcast(str(t), timeout)
|
return self.network.broadcast(t, timeout)
|
||||||
|
|
||||||
@command('')
|
@command('')
|
||||||
def createmultisig(self, num, pubkeys):
|
def createmultisig(self, num, pubkeys):
|
||||||
|
|
Loading…
Add table
Reference in a new issue