Skip to content

Commit 749c62f

Browse files
test: fix live tests
1 parent 24e2be2 commit 749c62f

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/LiveTxBuilderTest.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ class LiveTxBuilderTest {
7474
val psbt: Psbt = TxBuilder()
7575
.setRecipients(allRecipients)
7676
.feeRate(FeeRate.fromSatPerVb(4uL))
77-
.changePolicy(ChangeSpendPolicy.CHANGE_FORBIDDEN)
7877
.finish(wallet)
7978

8079
wallet.sign(psbt)

bdk-jvm/lib/src/test/kotlin/org/bitcoindevkit/LiveTxBuilderTest.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ class LiveTxBuilderTest {
8181
val psbt: Psbt = TxBuilder()
8282
.setRecipients(allRecipients)
8383
.feeRate(FeeRate.fromSatPerVb(4uL))
84-
.changePolicy(ChangeSpendPolicy.CHANGE_FORBIDDEN)
8584
.finish(wallet)
8685

8786
wallet.sign(psbt)

bdk-python/tests/test_live_kyoto.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from bdkpython import Connection, Client, Network, Descriptor, KeychainKind, CbfBuilder, CbfComponents, CbfClient, CbfNode, IpAddress, ScanType, Peer, Update, Wallet
1+
from bdkpython import Connection, Network, Descriptor, KeychainKind, CbfBuilder, CbfComponents, CbfClient, CbfNode, IpAddress, ScanType, Peer, Update, Wallet
22
import unittest
33
import os
44
import asyncio
@@ -39,7 +39,7 @@ async def testKyoto(self) -> None:
3939
light_client: CbfComponents = CbfBuilder().scan_type(ScanType.NEW()).peers(peers).connections(1).build(wallet)
4040
client: CbfClient = light_client.client
4141
node: CbfNode = light_client.node
42-
async def log_loop(client: Client):
42+
async def log_loop(client: CbfClient):
4343
while True:
4444
log = await client.next_log()
4545
print(log)

0 commit comments

Comments
 (0)