-
Notifications
You must be signed in to change notification settings - Fork 236
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
feat: Add multisig system script cell #1740
Conversation
9495bf5
to
267d99c
Compare
267d99c
to
ba7d1d7
Compare
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.
Hold as requested by @jjyr.
script/src/syscalls/mod.rs
Outdated
@@ -31,9 +31,9 @@ pub const ITEM_MISSING: u8 = 2; | |||
pub const SLICE_OUT_OF_BOUND: u8 = 3; | |||
|
|||
pub const LOAD_TRANSACTION_SYSCALL_NUMBER: u64 = 2051; | |||
pub const LOAD_SCRIPT_SYSCALL_NUMBER: u64 = 2052; |
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.
Why change the syscall number? cc @xxuejie
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.
To keep syscall number consistent, the number 205x
is used to describe load the whole struct, and 206x
is used to describe load the hash of the struct.
Please rebase onto the latest change in nervosnetwork/ckb-system-scripts#60 |
nervosnetwork/ckb-system-scripts#60