-
Notifications
You must be signed in to change notification settings - Fork 1
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
Bring clvm_serde from richardkiss/hsms #14
Conversation
45e489b
to
294a335
Compare
294a335
to
906c92c
Compare
v = p.pair[0] | ||
p = p.pair[1] | ||
v = Program.to(p.pair[0]) | ||
p = Program.to(p.pair[1]) | ||
else: | ||
v = p | ||
args.append(des(v)) |
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.
Instead of your changes, in the current clvm_serde
branch, I changed this line 304 like this:
- args.append(des(v))
+ args.append(des(Program.to(v)))
I no longer remember exactly what motivated this change. Maybe you remember what motivated yours. Do think your change is still necessary if you rebase to the current version of clvm_serde
?
"chia_base @ git+https://github.com/richardkiss/chia_base@91d9dba09e316714cf4bc86505587437fe442e48#egg=chia_base", | ||
"chialisp_puzzles @ git+https://github.com/richardkiss/chialisp_puzzles@eb97cd844b094e6dcd595b5bd6522d3a78eb692c#egg=chialisp_puzzles", | ||
"chia_base==0.1.4", | ||
"chialisp_puzzles==0.1.1", |
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.
This change seems to be included in 25191ed. Try rebasing.
No description provided.