Skip to content

Commit

Permalink
test_misc.py: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
darosior committed Jul 13, 2023
1 parent c421610 commit 43a0cf2
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tests/test_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ def receive_and_send(lianad, bitcoind):
wait_for(lambda: len(lianad.rpc.listcoins()["coins"]) == n_coins + 3)

# Create a spend that will create a change output, sign and broadcast it.
outpoints = [next(
c["outpoint"]
for c in lianad.rpc.listcoins()["coins"]
if c["spend_info"] is None
)]
outpoints = [
next(
c["outpoint"]
for c in lianad.rpc.listcoins()["coins"]
if c["spend_info"] is None
)
]
destinations = {
bitcoind.rpc.getnewaddress(): 200_000,
}
Expand Down

0 comments on commit 43a0cf2

Please sign in to comment.