We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@ofek
Imagine I have 1 USD on my account, which is something near 0.000059. So key.get_balance('btc') equals to 0.000059.
1
0.000059
key.get_balance('btc')
Then, I am trying to send this amount using leftover like this:
leftover
key.send([], leftover='<addr>')
But have Insufficient funds error.
Insufficient funds
I think this is because the amount which is on my wallet is too small and even less than the transaction fee. Then, how to send this amount?
Waiting for your reply, Thanks
The text was updated successfully, but these errors were encountered:
I get the same error. Cannot send less than 7025 sat (~ $1.72)
raise InsufficientFunds( bit.exceptions.InsufficientFunds: Balance 444 is less than 7025 (including fee).
This is on testnet. I have not tried on mainnet.
Sorry, something went wrong.
No branches or pull requests
@ofek
Imagine I have
1
USD on my account, which is something near0.000059
. Sokey.get_balance('btc')
equals to0.000059
.Then, I am trying to send this amount using
leftover
like this:But have
Insufficient funds
error.I think this is because the amount which is on my wallet is too small and even less than the transaction fee. Then, how to send this amount?
Waiting for your reply,
Thanks
The text was updated successfully, but these errors were encountered: