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
InsufficientFunds
Reported by @LukasKorba
▿ ZcashError - rustCreateToAddress : "Error while sending funds: Insufficient balance (have 9422794, need 165000 including fee)"
A likely culprit is incorrect handling of dust inputs in https://github.com/zcash/librustzcash/blob/main/zcash_client_backend/src/fees/zip317.rs#L118-L145 - if there exists a condition here where excessive dust inputs are being selected, even though the non-dust inputs are sufficient to pay for a transaction, then this could result in an InsufficientFunds error as a consequence of the test here: https://github.com/zcash/librustzcash/blob/main/zcash_client_backend/src/data_api/wallet/input_selection.rs#L478-L487
The text was updated successfully, but these errors were encountered:
Fixed in #1312, real fix postponed to #1316
Sorry, something went wrong.
No branches or pull requests
Reported by @LukasKorba
A likely culprit is incorrect handling of dust inputs in https://github.com/zcash/librustzcash/blob/main/zcash_client_backend/src/fees/zip317.rs#L118-L145 - if there exists a condition here where excessive dust inputs are being selected, even though the non-dust inputs are sufficient to pay for a transaction, then this could result in an
InsufficientFunds
error as a consequence of the test here: https://github.com/zcash/librustzcash/blob/main/zcash_client_backend/src/data_api/wallet/input_selection.rs#L478-L487The text was updated successfully, but these errors were encountered: