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
Followup of #925:
#925 (comment):
since we decided to go with wtxid for prefixes, now we have to choose utxos every time we try a nonce. this can be improved actually.
How?
We loop over nonceCalculate reveal addr Then build commit tx — which selects utxos
The text was updated successfully, but these errors were encountered:
the utxos chosen in the commit tx affect the commit txid
which affects reveal tx's txid and wtxid
but once a set of utxos are chosen, we don't need to re-select them.
one problem that may rise is taproot addresses don't have a fixed length and that might change the tx sizes? (I'm not completely sure about this)
Sorry, something went wrong.
I am not quite sure if it's a correct strategy. If fee increases while we are mining wtxid, we need to re-select utxos if their sum < fee.
we don't requery fees while mining, but yes. we should actually at some intervals
No branches or pull requests
Followup of #925:
#925 (comment):
How?
We loop over nonceCalculate reveal addr Then build commit tx — which selects utxos
The text was updated successfully, but these errors were encountered: