Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
608e5cad
Commit
608e5cad
authored
Dec 11, 2020
by
Alina
Committed by
GitHub
Dec 11, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comment updates (#123)
parent
42e8a836
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
OVM_StateCommitmentChain.sol
...ptimistic-ethereum/OVM/chain/OVM_StateCommitmentChain.sol
+1
-1
OVM_ExecutionManager.sol
...ptimistic-ethereum/OVM/execution/OVM_ExecutionManager.sol
+2
-2
Lib_OVMCodec.sol
...acts/optimistic-ethereum/libraries/codec/Lib_OVMCodec.sol
+1
-1
No files found.
packages/contracts/contracts/optimistic-ethereum/OVM/chain/OVM_StateCommitmentChain.sol
View file @
608e5cad
...
@@ -425,7 +425,7 @@ contract OVM_StateCommitmentChain is iOVM_StateCommitmentChain, iRingBufferOverw
...
@@ -425,7 +425,7 @@ contract OVM_StateCommitmentChain is iOVM_StateCommitmentChain, iRingBufferOverw
}
}
/**
/**
* Removes a batch from the chain.
* Removes a batch
and all subsequent batches
from the chain.
* @param _batchHeader Header of the batch to remove.
* @param _batchHeader Header of the batch to remove.
*/
*/
function _deleteBatch(
function _deleteBatch(
...
...
packages/contracts/contracts/optimistic-ethereum/OVM/execution/OVM_ExecutionManager.sol
View file @
608e5cad
...
@@ -287,7 +287,7 @@ contract OVM_ExecutionManager is iOVM_ExecutionManager, Lib_AddressResolver {
...
@@ -287,7 +287,7 @@ contract OVM_ExecutionManager is iOVM_ExecutionManager, Lib_AddressResolver {
/**
/**
* @notice Specifies from which L1 rollup queue this transaction originated from.
* @notice Specifies from which L1 rollup queue this transaction originated from.
* @return _queueOrigin Address of the
CALLER
within the current message context.
* @return _queueOrigin Address of the
ovmL1QUEUEORIGIN
within the current message context.
*/
*/
function ovmL1QUEUEORIGIN()
function ovmL1QUEUEORIGIN()
override
override
...
@@ -726,7 +726,7 @@ contract OVM_ExecutionManager is iOVM_ExecutionManager, Lib_AddressResolver {
...
@@ -726,7 +726,7 @@ contract OVM_ExecutionManager is iOVM_ExecutionManager, Lib_AddressResolver {
/**
/**
* @notice Overrides EXTCODEHASH.
* @notice Overrides EXTCODEHASH.
* @param _contract Address of the contract to query the hash of.
* @param _contract Address of the contract to query the hash of.
* @return _EXTCODEHASH
Size of the requested contract in bytes
.
* @return _EXTCODEHASH
Hash of the requested contract
.
*/
*/
function ovmEXTCODEHASH(
function ovmEXTCODEHASH(
address _contract
address _contract
...
...
packages/contracts/contracts/optimistic-ethereum/libraries/codec/Lib_OVMCodec.sol
View file @
608e5cad
...
@@ -310,7 +310,7 @@ library Lib_OVMCodec {
...
@@ -310,7 +310,7 @@ library Lib_OVMCodec {
bytes[] memory raw = new bytes[](4);
bytes[] memory raw = new bytes[](4);
// Unfortunately we can't create this array outright because
// Unfortunately we can't create this array outright because
//
RLPWriter.encod
eList will reject fixed-size arrays. Assigning
//
Lib_RLPWriter.writ
eList will reject fixed-size arrays. Assigning
// index-by-index circumvents this issue.
// index-by-index circumvents this issue.
raw[0] = Lib_RLPWriter.writeUint(_account.nonce);
raw[0] = Lib_RLPWriter.writeUint(_account.nonce);
raw[1] = Lib_RLPWriter.writeUint(_account.balance);
raw[1] = Lib_RLPWriter.writeUint(_account.balance);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment