-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
tapyrify the chain crate #7
Conversation
1ca0067
to
ec651a4
Compare
ec651a4
to
1c7c1e0
Compare
Due to the Tapyrus conversion, the TXID values changed, causing the order of transactions sorted lexicographically by TXID to change, which resulted in the test failures.
@@ -113,12 +114,12 @@ fn test_tx_conflict_handling() { | |||
}, | |||
], | |||
// the txgraph is going to pick tx_conflict_2 because of higher lexicographical txid |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Txidが変わったためと思って良いですかね。
// the txgraph is going to pick tx_conflict_2 because of higher lexicographical txid | |
// the txgraph is going to pick tx_conflict_1 because of higher lexicographical txid |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
はい、txid が変わったので、辞書順のソートが変わってしまった影響です。
@@ -14,7 +14,7 @@ jobs: | |||
clippy: true | |||
- version: 1.63.0 # MSRV | |||
features: | |||
- --no-default-features | |||
- --no-default-features --features tapyrus/no-std,miniscript/no-std,hashbrown |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
後半の--features tapyrus/no-std,miniscript/no-std,hashbrown
は必要?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tapyrus crate は stdか no-std のどちらかの feature を有効にしないとビルドに失敗するんですが、これをつけないとそのために失敗します。
ただ、もともとなかった指定なので、なぜ必要になったのかよくわかっていないです。
No description provided.