We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d21b606 commit b9b5d82Copy full SHA for b9b5d82
src/wallet/wallet.py
@@ -168,6 +168,9 @@ async def select_coins(self, amount) -> Optional[Set[Coin]]:
168
# but unconfirmed, and we are waiting for the change. (unconfirmed_additions)
169
unconfirmed_additions = None
170
if sum < amount:
171
+ raise ValueError(
172
+ "Can't make this transaction at the moment. Waiting for the change from the previous transaction."
173
+ )
174
unconfirmed_additions = await self.wallet_state_manager.unconfirmed_additions_for_wallet(
175
self.wallet_info.id
176
)
0 commit comments