This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Handle empty user state for sender/reciever on Rollup.disputeTransitionTransfer #655
Draft
jacque006
wants to merge
3
commits into
master
Choose a base branch
from
contracts/bug-empty-user-state
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,11 @@ contract Rollup is BatchManager, EIP712, IEIP712 { | |
string public constant DOMAIN_NAME = "Hubble"; | ||
string public constant DOMAIN_VERSION = "1"; | ||
|
||
bytes32 public constant ZERO_BYTES32 = | ||
0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563; | ||
/** | ||
* @dev If this is not being externally consumed, it can be removed. | ||
*/ | ||
// solhint-disable-next-line var-name-mixedcase | ||
bytes32 public immutable ZERO_BYTES32; | ||
Comment on lines
+32
to
+35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Think we don't externally consume this. |
||
|
||
// External contracts | ||
BLSAccountRegistry public immutable accountRegistry; | ||
|
@@ -69,6 +72,8 @@ contract Rollup is BatchManager, EIP712, IEIP712 { | |
) | ||
EIP712(DOMAIN_NAME, DOMAIN_VERSION) | ||
{ | ||
ZERO_BYTES32 = Types.ZERO_BYTES32; | ||
|
||
accountRegistry = _accountRegistry; | ||
transfer = _transfer; | ||
massMigration = _massMigration; | ||
|
@@ -80,11 +85,11 @@ contract Rollup is BatchManager, EIP712, IEIP712 { | |
); | ||
|
||
bytes32 genesisCommitment = | ||
keccak256(abi.encode(genesisStateRoot, ZERO_BYTES32)); | ||
keccak256(abi.encode(genesisStateRoot, Types.ZERO_BYTES32)); | ||
|
||
// Same effect as `MerkleTree.merklize` | ||
bytes32 commitmentRoot = | ||
keccak256(abi.encode(genesisCommitment, ZERO_BYTES32)); | ||
keccak256(abi.encode(genesisCommitment, Types.ZERO_BYTES32)); | ||
batches[nextBatchID] = Types.Batch({ | ||
commitmentRoot: commitmentRoot, | ||
meta: Types.encodeMeta( | ||
|
@@ -355,13 +360,15 @@ contract Rollup is BatchManager, EIP712, IEIP712 { | |
vacant.witness | ||
); | ||
bytes32 depositCommitment = | ||
keccak256(abi.encode(newRoot, ZERO_BYTES32)); | ||
keccak256(abi.encode(newRoot, Types.ZERO_BYTES32)); | ||
// Same effect as `MerkleTree.merklize` | ||
bytes32 root = keccak256(abi.encode(depositCommitment, ZERO_BYTES32)); | ||
bytes32 root = | ||
keccak256(abi.encode(depositCommitment, Types.ZERO_BYTES32)); | ||
// AccountRoot doesn't matter for deposit, add dummy value | ||
submitBatch(root, 1, bytes32(0), Types.Usage.Deposit); | ||
} | ||
|
||
// TODO Add note about proofs beng dif in this one than C2T and MM? | ||
function disputeTransitionTransfer( | ||
uint256 batchID, | ||
Types.CommitmentInclusionProof memory previous, | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Good one moving
ZERO_BYTES32
here