mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
lnbase: use broadcast_transaction instead of broadcast (follow up e57e55aad
)
This commit is contained in:
parent
01280924d2
commit
2e99f30d24
1 changed files with 1 additions and 1 deletions
|
@ -908,7 +908,7 @@ class Peer(PrintError):
|
||||||
if not ecc.verify_signature(remote_config.multisig_key.pubkey, remote_sig, pre_hash):
|
if not ecc.verify_signature(remote_config.multisig_key.pubkey, remote_sig, pre_hash):
|
||||||
raise Exception('verifying remote signature failed.')
|
raise Exception('verifying remote signature failed.')
|
||||||
# broadcast funding tx
|
# broadcast funding tx
|
||||||
success, _txid = self.network.broadcast(funding_tx)
|
success, _txid = self.network.broadcast_transaction(funding_tx)
|
||||||
assert success, success
|
assert success, success
|
||||||
their_revocation_store = RevocationStore()
|
their_revocation_store = RevocationStore()
|
||||||
chan = OpenChannel(
|
chan = OpenChannel(
|
||||||
|
|
Loading…
Add table
Reference in a new issue