This commit is contained in:
Yostra 2020-09-17 16:59:45 -07:00 committed by Gene Hoffman
parent e2ac44d017
commit 3d114f13cc
1 changed files with 3 additions and 1 deletions

View File

@ -624,7 +624,9 @@ class CCWallet:
outgoing_amount = uint64(sum(amounts))
if coins is None:
selected_coins: Set[Coin] = await self.select_coins(uint64(outgoing_amount + fee))
selected_coins: Set[Coin] = await self.select_coins(
uint64(outgoing_amount + fee)
)
else:
selected_coins = coins