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
sha256
This test fails :
#[test] fn map_sha256() { crosscheck( "(map sha256 (list 1 2 3))", interpret("(list 0x4cbbd8ca5215b8d161aec181a74b694f4e24b001d5b081dc0030ed797a8973e0 0xb1535c7783ea8829b6b0cf67704539798b4d16c39bf0bfe09494c5d9f12eee30)"), ); }
The result of (sha256 2) seems to overwrite the result of (sha256 1).
(sha256 2)
(sha256 1)
The issue seems to come from map, since (list (sha256 1) (sha256 2)) behaves normally.
map
(list (sha256 1) (sha256 2))
The text was updated successfully, but these errors were encountered:
hash160
sha512
BowTiedWoo
Successfully merging a pull request may close this issue.
This test fails :
The result of
(sha256 2)
seems to overwrite the result of(sha256 1)
.The issue seems to come from
map
, since(list (sha256 1) (sha256 2))
behaves normally.The text was updated successfully, but these errors were encountered: