-
Notifications
You must be signed in to change notification settings - Fork 2
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
Implement mailbox process #17
Conversation
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.
Would love to ship this with tests. May require creating some MockRecipients - I haven't thought about the best way to test this yet so lmk if you wanna talk through it at all
fb68bc9
to
4913a82
Compare
fe1d911
to
dc7cf39
Compare
6b4dbcf
to
c6aac86
Compare
2eab1e2
to
6b7ce79
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.
Lfg, looks great
Waiting to approve till tests 🤓
@@ -22,9 +23,15 @@ const VERSION: u8 = 0; | |||
// "fuel" in bytes | |||
const LOCAL_DOMAIN: u32 = 0x6675656cu32; | |||
|
|||
const ZERO_ID: ContractId = ContractId { | |||
value: 0x0000000000000000000000000000000000000000000000000000000000000000, |
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.
can you use ZERO_B256
here?
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.
I think you meant to change this to ZERO_B256
because of the import?
c3c3467
to
efdb340
Compare
* Add interfaces pkg and make multisig ism compat * Make ISM verify write
872bdde
to
63f098f
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.
Amazing job, this looks great - really loving the new repo structure & CI as well
@@ -22,9 +23,15 @@ const VERSION: u8 = 0; | |||
// "fuel" in bytes | |||
const LOCAL_DOMAIN: u32 = 0x6675656cu32; | |||
|
|||
const ZERO_ID: ContractId = ContractId { | |||
value: 0x0000000000000000000000000000000000000000000000000000000000000000, |
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.
I think you meant to change this to ZERO_B256
because of the import?
Fixes #5
Touches #28