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
We should change the way we serialize utxos to match Bitcoin Core:
https://github.com/bitcoin/bitcoin/blob/398dd678338971d2189934713c83c184742f293f/src/coins.h#L60-L65
vs ours:
utreexo/btcacc/leaf.go
Lines 75 to 82 in 2faac6f
This has several benfits:
The text was updated successfully, but these errors were encountered:
Sounds good but that does require varint encoding and unfortunately we can't import from utcd/btcd because that results in import cycles.
Two ways of going about this:
1: Move package btcacc/ into utcd/btcd 2: Copy over varint code from utcd/btcd
Requesting input from @adiabat
Sorry, something went wrong.
No branches or pull requests
We should change the way we serialize utxos to match Bitcoin Core:
https://github.com/bitcoin/bitcoin/blob/398dd678338971d2189934713c83c184742f293f/src/coins.h#L60-L65
vs ours:
utreexo/btcacc/leaf.go
Lines 75 to 82 in 2faac6f
This has several benfits:
The text was updated successfully, but these errors were encountered: