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
06c495e0
Commit
06c495e0
authored
Dec 04, 2023
by
pcw109550
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
op-node: Public scope for span batch structs and elements
parent
efddff2d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
59 deletions
+59
-59
span_batch.go
op-node/rollup/derive/span_batch.go
+51
-51
span_batch_test.go
op-node/rollup/derive/span_batch_test.go
+8
-8
No files found.
op-node/rollup/derive/span_batch.go
View file @
06c495e0
...
@@ -377,7 +377,7 @@ func (b *RawSpanBatch) encode(w io.Writer) error {
...
@@ -377,7 +377,7 @@ func (b *RawSpanBatch) encode(w io.Writer) error {
return
nil
return
nil
}
}
// derive converts RawSpanBatch into SpanBatch, which has a list of
s
panBatchElement.
// derive converts RawSpanBatch into SpanBatch, which has a list of
S
panBatchElement.
// We need chain config constants to derive values for making payload attributes.
// We need chain config constants to derive values for making payload attributes.
func
(
b
*
RawSpanBatch
)
derive
(
blockTime
,
genesisTimestamp
uint64
,
chainID
*
big
.
Int
)
(
*
SpanBatch
,
error
)
{
func
(
b
*
RawSpanBatch
)
derive
(
blockTime
,
genesisTimestamp
uint64
,
chainID
*
big
.
Int
)
(
*
SpanBatch
,
error
)
{
if
b
.
blockCount
==
0
{
if
b
.
blockCount
==
0
{
...
@@ -399,19 +399,19 @@ func (b *RawSpanBatch) derive(blockTime, genesisTimestamp uint64, chainID *big.I
...
@@ -399,19 +399,19 @@ func (b *RawSpanBatch) derive(blockTime, genesisTimestamp uint64, chainID *big.I
}
}
spanBatch
:=
SpanBatch
{
spanBatch
:=
SpanBatch
{
p
arentCheck
:
b
.
parentCheck
,
P
arentCheck
:
b
.
parentCheck
,
l
1OriginCheck
:
b
.
l1OriginCheck
,
L
1OriginCheck
:
b
.
l1OriginCheck
,
}
}
txIdx
:=
0
txIdx
:=
0
for
i
:=
0
;
i
<
int
(
b
.
blockCount
);
i
++
{
for
i
:=
0
;
i
<
int
(
b
.
blockCount
);
i
++
{
batch
:=
s
panBatchElement
{}
batch
:=
S
panBatchElement
{}
batch
.
Timestamp
=
genesisTimestamp
+
b
.
relTimestamp
+
blockTime
*
uint64
(
i
)
batch
.
Timestamp
=
genesisTimestamp
+
b
.
relTimestamp
+
blockTime
*
uint64
(
i
)
batch
.
EpochNum
=
rollup
.
Epoch
(
blockOriginNums
[
i
])
batch
.
EpochNum
=
rollup
.
Epoch
(
blockOriginNums
[
i
])
for
j
:=
0
;
j
<
int
(
b
.
blockTxCounts
[
i
]);
j
++
{
for
j
:=
0
;
j
<
int
(
b
.
blockTxCounts
[
i
]);
j
++
{
batch
.
Transactions
=
append
(
batch
.
Transactions
,
fullTxs
[
txIdx
])
batch
.
Transactions
=
append
(
batch
.
Transactions
,
fullTxs
[
txIdx
])
txIdx
++
txIdx
++
}
}
spanBatch
.
batches
=
append
(
spanBatch
.
b
atches
,
&
batch
)
spanBatch
.
Batches
=
append
(
spanBatch
.
B
atches
,
&
batch
)
}
}
return
&
spanBatch
,
nil
return
&
spanBatch
,
nil
}
}
...
@@ -426,18 +426,18 @@ func (b *RawSpanBatch) ToSpanBatch(blockTime, genesisTimestamp uint64, chainID *
...
@@ -426,18 +426,18 @@ func (b *RawSpanBatch) ToSpanBatch(blockTime, genesisTimestamp uint64, chainID *
return
spanBatch
,
nil
return
spanBatch
,
nil
}
}
//
s
panBatchElement is a derived form of input to build a L2 block.
//
S
panBatchElement is a derived form of input to build a L2 block.
// similar to SingularBatch, but does not have ParentHash and EpochHash
// similar to SingularBatch, but does not have ParentHash and EpochHash
// because Span batch spec does not contain parent hash and epoch hash of every block in the span.
// because Span batch spec does not contain parent hash and epoch hash of every block in the span.
type
s
panBatchElement
struct
{
type
S
panBatchElement
struct
{
EpochNum
rollup
.
Epoch
// aka l1 num
EpochNum
rollup
.
Epoch
// aka l1 num
Timestamp
uint64
Timestamp
uint64
Transactions
[]
hexutil
.
Bytes
Transactions
[]
hexutil
.
Bytes
}
}
// singularBatchToElement converts a SingularBatch to a
s
panBatchElement
// singularBatchToElement converts a SingularBatch to a
S
panBatchElement
func
singularBatchToElement
(
singularBatch
*
SingularBatch
)
*
s
panBatchElement
{
func
singularBatchToElement
(
singularBatch
*
SingularBatch
)
*
S
panBatchElement
{
return
&
s
panBatchElement
{
return
&
S
panBatchElement
{
EpochNum
:
singularBatch
.
EpochNum
,
EpochNum
:
singularBatch
.
EpochNum
,
Timestamp
:
singularBatch
.
Timestamp
,
Timestamp
:
singularBatch
.
Timestamp
,
Transactions
:
singularBatch
.
Transactions
,
Transactions
:
singularBatch
.
Transactions
,
...
@@ -445,11 +445,11 @@ func singularBatchToElement(singularBatch *SingularBatch) *spanBatchElement {
...
@@ -445,11 +445,11 @@ func singularBatchToElement(singularBatch *SingularBatch) *spanBatchElement {
}
}
// SpanBatch is an implementation of Batch interface,
// SpanBatch is an implementation of Batch interface,
// containing the input to build a span of L2 blocks in derived form (
s
panBatchElement)
// containing the input to build a span of L2 blocks in derived form (
S
panBatchElement)
type
SpanBatch
struct
{
type
SpanBatch
struct
{
p
arentCheck
[
20
]
byte
// First 20 bytes of the first block's parent hash
P
arentCheck
[
20
]
byte
// First 20 bytes of the first block's parent hash
l
1OriginCheck
[
20
]
byte
// First 20 bytes of the last block's L1 origin hash
L
1OriginCheck
[
20
]
byte
// First 20 bytes of the last block's L1 origin hash
batches
[]
*
s
panBatchElement
// List of block input in derived form
Batches
[]
*
S
panBatchElement
// List of block input in derived form
}
}
// GetBatchType returns its batch type (batch_version)
// GetBatchType returns its batch type (batch_version)
...
@@ -459,100 +459,100 @@ func (b *SpanBatch) GetBatchType() int {
...
@@ -459,100 +459,100 @@ func (b *SpanBatch) GetBatchType() int {
// GetTimestamp returns timestamp of the first block in the span
// GetTimestamp returns timestamp of the first block in the span
func
(
b
*
SpanBatch
)
GetTimestamp
()
uint64
{
func
(
b
*
SpanBatch
)
GetTimestamp
()
uint64
{
return
b
.
b
atches
[
0
]
.
Timestamp
return
b
.
B
atches
[
0
]
.
Timestamp
}
}
// LogContext creates a new log context that contains information of the batch
// LogContext creates a new log context that contains information of the batch
func
(
b
*
SpanBatch
)
LogContext
(
log
log
.
Logger
)
log
.
Logger
{
func
(
b
*
SpanBatch
)
LogContext
(
log
log
.
Logger
)
log
.
Logger
{
if
len
(
b
.
b
atches
)
==
0
{
if
len
(
b
.
B
atches
)
==
0
{
return
log
.
New
(
"block_count"
,
0
)
return
log
.
New
(
"block_count"
,
0
)
}
}
return
log
.
New
(
return
log
.
New
(
"batch_timestamp"
,
b
.
b
atches
[
0
]
.
Timestamp
,
"batch_timestamp"
,
b
.
B
atches
[
0
]
.
Timestamp
,
"parent_check"
,
hexutil
.
Encode
(
b
.
p
arentCheck
[
:
]),
"parent_check"
,
hexutil
.
Encode
(
b
.
P
arentCheck
[
:
]),
"origin_check"
,
hexutil
.
Encode
(
b
.
l
1OriginCheck
[
:
]),
"origin_check"
,
hexutil
.
Encode
(
b
.
L
1OriginCheck
[
:
]),
"start_epoch_number"
,
b
.
GetStartEpochNum
(),
"start_epoch_number"
,
b
.
GetStartEpochNum
(),
"end_epoch_number"
,
b
.
GetBlockEpochNum
(
len
(
b
.
b
atches
)
-
1
),
"end_epoch_number"
,
b
.
GetBlockEpochNum
(
len
(
b
.
B
atches
)
-
1
),
"block_count"
,
len
(
b
.
b
atches
),
"block_count"
,
len
(
b
.
B
atches
),
)
)
}
}
// GetStartEpochNum returns epoch number(L1 origin block number) of the first block in the span
// GetStartEpochNum returns epoch number(L1 origin block number) of the first block in the span
func
(
b
*
SpanBatch
)
GetStartEpochNum
()
rollup
.
Epoch
{
func
(
b
*
SpanBatch
)
GetStartEpochNum
()
rollup
.
Epoch
{
return
b
.
b
atches
[
0
]
.
EpochNum
return
b
.
B
atches
[
0
]
.
EpochNum
}
}
// CheckOriginHash checks if the l1OriginCheck matches the first 20 bytes of given hash, probably L1 block hash from the current canonical L1 chain.
// CheckOriginHash checks if the l1OriginCheck matches the first 20 bytes of given hash, probably L1 block hash from the current canonical L1 chain.
func
(
b
*
SpanBatch
)
CheckOriginHash
(
hash
common
.
Hash
)
bool
{
func
(
b
*
SpanBatch
)
CheckOriginHash
(
hash
common
.
Hash
)
bool
{
return
bytes
.
Equal
(
b
.
l
1OriginCheck
[
:
],
hash
.
Bytes
()[
:
20
])
return
bytes
.
Equal
(
b
.
L
1OriginCheck
[
:
],
hash
.
Bytes
()[
:
20
])
}
}
// CheckParentHash checks if the parentCheck matches the first 20 bytes of given hash, probably the current L2 safe head.
// CheckParentHash checks if the parentCheck matches the first 20 bytes of given hash, probably the current L2 safe head.
func
(
b
*
SpanBatch
)
CheckParentHash
(
hash
common
.
Hash
)
bool
{
func
(
b
*
SpanBatch
)
CheckParentHash
(
hash
common
.
Hash
)
bool
{
return
bytes
.
Equal
(
b
.
p
arentCheck
[
:
],
hash
.
Bytes
()[
:
20
])
return
bytes
.
Equal
(
b
.
P
arentCheck
[
:
],
hash
.
Bytes
()[
:
20
])
}
}
// GetBlockEpochNum returns the epoch number(L1 origin block number) of the block at the given index in the span.
// GetBlockEpochNum returns the epoch number(L1 origin block number) of the block at the given index in the span.
func
(
b
*
SpanBatch
)
GetBlockEpochNum
(
i
int
)
uint64
{
func
(
b
*
SpanBatch
)
GetBlockEpochNum
(
i
int
)
uint64
{
return
uint64
(
b
.
b
atches
[
i
]
.
EpochNum
)
return
uint64
(
b
.
B
atches
[
i
]
.
EpochNum
)
}
}
// GetBlockTimestamp returns the timestamp of the block at the given index in the span.
// GetBlockTimestamp returns the timestamp of the block at the given index in the span.
func
(
b
*
SpanBatch
)
GetBlockTimestamp
(
i
int
)
uint64
{
func
(
b
*
SpanBatch
)
GetBlockTimestamp
(
i
int
)
uint64
{
return
b
.
b
atches
[
i
]
.
Timestamp
return
b
.
B
atches
[
i
]
.
Timestamp
}
}
// GetBlockTransactions returns the encoded transactions of the block at the given index in the span.
// GetBlockTransactions returns the encoded transactions of the block at the given index in the span.
func
(
b
*
SpanBatch
)
GetBlockTransactions
(
i
int
)
[]
hexutil
.
Bytes
{
func
(
b
*
SpanBatch
)
GetBlockTransactions
(
i
int
)
[]
hexutil
.
Bytes
{
return
b
.
b
atches
[
i
]
.
Transactions
return
b
.
B
atches
[
i
]
.
Transactions
}
}
// GetBlockCount returns the number of blocks in the span
// GetBlockCount returns the number of blocks in the span
func
(
b
*
SpanBatch
)
GetBlockCount
()
int
{
func
(
b
*
SpanBatch
)
GetBlockCount
()
int
{
return
len
(
b
.
b
atches
)
return
len
(
b
.
B
atches
)
}
}
// AppendSingularBatch appends a SingularBatch into the span batch
// AppendSingularBatch appends a SingularBatch into the span batch
// updates l1OriginCheck or parentCheck if needed.
// updates l1OriginCheck or parentCheck if needed.
func
(
b
*
SpanBatch
)
AppendSingularBatch
(
singularBatch
*
SingularBatch
)
{
func
(
b
*
SpanBatch
)
AppendSingularBatch
(
singularBatch
*
SingularBatch
)
{
if
len
(
b
.
b
atches
)
==
0
{
if
len
(
b
.
B
atches
)
==
0
{
copy
(
b
.
p
arentCheck
[
:
],
singularBatch
.
ParentHash
.
Bytes
()[
:
20
])
copy
(
b
.
P
arentCheck
[
:
],
singularBatch
.
ParentHash
.
Bytes
()[
:
20
])
}
}
b
.
batches
=
append
(
b
.
b
atches
,
singularBatchToElement
(
singularBatch
))
b
.
Batches
=
append
(
b
.
B
atches
,
singularBatchToElement
(
singularBatch
))
copy
(
b
.
l
1OriginCheck
[
:
],
singularBatch
.
EpochHash
.
Bytes
()[
:
20
])
copy
(
b
.
L
1OriginCheck
[
:
],
singularBatch
.
EpochHash
.
Bytes
()[
:
20
])
}
}
// ToRawSpanBatch merges SingularBatch List and initialize single RawSpanBatch
// ToRawSpanBatch merges SingularBatch List and initialize single RawSpanBatch
func
(
b
*
SpanBatch
)
ToRawSpanBatch
(
originChangedBit
uint
,
genesisTimestamp
uint64
,
chainID
*
big
.
Int
)
(
*
RawSpanBatch
,
error
)
{
func
(
b
*
SpanBatch
)
ToRawSpanBatch
(
originChangedBit
uint
,
genesisTimestamp
uint64
,
chainID
*
big
.
Int
)
(
*
RawSpanBatch
,
error
)
{
if
len
(
b
.
b
atches
)
==
0
{
if
len
(
b
.
B
atches
)
==
0
{
return
nil
,
errors
.
New
(
"cannot merge empty singularBatch list"
)
return
nil
,
errors
.
New
(
"cannot merge empty singularBatch list"
)
}
}
raw
:=
RawSpanBatch
{}
raw
:=
RawSpanBatch
{}
// Sort by timestamp of L2 block
// Sort by timestamp of L2 block
sort
.
Slice
(
b
.
b
atches
,
func
(
i
,
j
int
)
bool
{
sort
.
Slice
(
b
.
B
atches
,
func
(
i
,
j
int
)
bool
{
return
b
.
batches
[
i
]
.
Timestamp
<
b
.
b
atches
[
j
]
.
Timestamp
return
b
.
Batches
[
i
]
.
Timestamp
<
b
.
B
atches
[
j
]
.
Timestamp
})
})
// spanBatchPrefix
// spanBatchPrefix
span_start
:=
b
.
b
atches
[
0
]
span_start
:=
b
.
B
atches
[
0
]
span_end
:=
b
.
batches
[
len
(
b
.
b
atches
)
-
1
]
span_end
:=
b
.
Batches
[
len
(
b
.
B
atches
)
-
1
]
raw
.
relTimestamp
=
span_start
.
Timestamp
-
genesisTimestamp
raw
.
relTimestamp
=
span_start
.
Timestamp
-
genesisTimestamp
raw
.
l1OriginNum
=
uint64
(
span_end
.
EpochNum
)
raw
.
l1OriginNum
=
uint64
(
span_end
.
EpochNum
)
raw
.
parentCheck
=
b
.
p
arentCheck
raw
.
parentCheck
=
b
.
P
arentCheck
raw
.
l1OriginCheck
=
b
.
l
1OriginCheck
raw
.
l1OriginCheck
=
b
.
L
1OriginCheck
// spanBatchPayload
// spanBatchPayload
raw
.
blockCount
=
uint64
(
len
(
b
.
b
atches
))
raw
.
blockCount
=
uint64
(
len
(
b
.
B
atches
))
raw
.
originBits
=
new
(
big
.
Int
)
raw
.
originBits
=
new
(
big
.
Int
)
raw
.
originBits
.
SetBit
(
raw
.
originBits
,
0
,
originChangedBit
)
raw
.
originBits
.
SetBit
(
raw
.
originBits
,
0
,
originChangedBit
)
for
i
:=
1
;
i
<
len
(
b
.
b
atches
);
i
++
{
for
i
:=
1
;
i
<
len
(
b
.
B
atches
);
i
++
{
bit
:=
uint
(
0
)
bit
:=
uint
(
0
)
if
b
.
batches
[
i
-
1
]
.
EpochNum
<
b
.
b
atches
[
i
]
.
EpochNum
{
if
b
.
Batches
[
i
-
1
]
.
EpochNum
<
b
.
B
atches
[
i
]
.
EpochNum
{
bit
=
1
bit
=
1
}
}
raw
.
originBits
.
SetBit
(
raw
.
originBits
,
i
,
bit
)
raw
.
originBits
.
SetBit
(
raw
.
originBits
,
i
,
bit
)
}
}
var
blockTxCounts
[]
uint64
var
blockTxCounts
[]
uint64
var
txs
[][]
byte
var
txs
[][]
byte
for
_
,
batch
:=
range
b
.
b
atches
{
for
_
,
batch
:=
range
b
.
B
atches
{
blockTxCount
:=
uint64
(
len
(
batch
.
Transactions
))
blockTxCount
:=
uint64
(
len
(
batch
.
Transactions
))
blockTxCounts
=
append
(
blockTxCounts
,
blockTxCount
)
blockTxCounts
=
append
(
blockTxCounts
,
blockTxCount
)
for
_
,
rawTx
:=
range
batch
.
Transactions
{
for
_
,
rawTx
:=
range
batch
.
Transactions
{
...
@@ -568,13 +568,13 @@ func (b *SpanBatch) ToRawSpanBatch(originChangedBit uint, genesisTimestamp uint6
...
@@ -568,13 +568,13 @@ func (b *SpanBatch) ToRawSpanBatch(originChangedBit uint, genesisTimestamp uint6
return
&
raw
,
nil
return
&
raw
,
nil
}
}
// GetSingularBatches converts
s
panBatchElements after L2 safe head to SingularBatches.
// GetSingularBatches converts
S
panBatchElements after L2 safe head to SingularBatches.
// Since
s
panBatchElement does not contain EpochHash, set EpochHash from the given L1 blocks.
// Since
S
panBatchElement does not contain EpochHash, set EpochHash from the given L1 blocks.
// The result SingularBatches do not contain ParentHash yet. It must be set by BatchQueue.
// The result SingularBatches do not contain ParentHash yet. It must be set by BatchQueue.
func
(
b
*
SpanBatch
)
GetSingularBatches
(
l1Origins
[]
eth
.
L1BlockRef
,
l2SafeHead
eth
.
L2BlockRef
)
([]
*
SingularBatch
,
error
)
{
func
(
b
*
SpanBatch
)
GetSingularBatches
(
l1Origins
[]
eth
.
L1BlockRef
,
l2SafeHead
eth
.
L2BlockRef
)
([]
*
SingularBatch
,
error
)
{
var
singularBatches
[]
*
SingularBatch
var
singularBatches
[]
*
SingularBatch
originIdx
:=
0
originIdx
:=
0
for
_
,
batch
:=
range
b
.
b
atches
{
for
_
,
batch
:=
range
b
.
B
atches
{
if
batch
.
Timestamp
<=
l2SafeHead
.
Time
{
if
batch
.
Timestamp
<=
l2SafeHead
.
Time
{
continue
continue
}
}
...
@@ -600,16 +600,16 @@ func (b *SpanBatch) GetSingularBatches(l1Origins []eth.L1BlockRef, l2SafeHead et
...
@@ -600,16 +600,16 @@ func (b *SpanBatch) GetSingularBatches(l1Origins []eth.L1BlockRef, l2SafeHead et
return
singularBatches
,
nil
return
singularBatches
,
nil
}
}
// NewSpanBatch converts given singularBatches into
s
panBatchElements, and creates a new SpanBatch.
// NewSpanBatch converts given singularBatches into
S
panBatchElements, and creates a new SpanBatch.
func
NewSpanBatch
(
singularBatches
[]
*
SingularBatch
)
*
SpanBatch
{
func
NewSpanBatch
(
singularBatches
[]
*
SingularBatch
)
*
SpanBatch
{
spanBatch
:=
&
SpanBatch
{}
spanBatch
:=
&
SpanBatch
{}
if
len
(
singularBatches
)
==
0
{
if
len
(
singularBatches
)
==
0
{
return
spanBatch
return
spanBatch
}
}
copy
(
spanBatch
.
p
arentCheck
[
:
],
singularBatches
[
0
]
.
ParentHash
.
Bytes
()[
:
20
])
copy
(
spanBatch
.
P
arentCheck
[
:
],
singularBatches
[
0
]
.
ParentHash
.
Bytes
()[
:
20
])
copy
(
spanBatch
.
l
1OriginCheck
[
:
],
singularBatches
[
len
(
singularBatches
)
-
1
]
.
EpochHash
.
Bytes
()[
:
20
])
copy
(
spanBatch
.
L
1OriginCheck
[
:
],
singularBatches
[
len
(
singularBatches
)
-
1
]
.
EpochHash
.
Bytes
()[
:
20
])
for
_
,
singularBatch
:=
range
singularBatches
{
for
_
,
singularBatch
:=
range
singularBatches
{
spanBatch
.
batches
=
append
(
spanBatch
.
b
atches
,
singularBatchToElement
(
singularBatch
))
spanBatch
.
Batches
=
append
(
spanBatch
.
B
atches
,
singularBatchToElement
(
singularBatch
))
}
}
return
spanBatch
return
spanBatch
}
}
...
@@ -660,7 +660,7 @@ func (b *SpanBatchBuilder) GetRawSpanBatch() (*RawSpanBatch, error) {
...
@@ -660,7 +660,7 @@ func (b *SpanBatchBuilder) GetRawSpanBatch() (*RawSpanBatch, error) {
}
}
func
(
b
*
SpanBatchBuilder
)
GetBlockCount
()
int
{
func
(
b
*
SpanBatchBuilder
)
GetBlockCount
()
int
{
return
len
(
b
.
spanBatch
.
b
atches
)
return
len
(
b
.
spanBatch
.
B
atches
)
}
}
func
(
b
*
SpanBatchBuilder
)
Reset
()
{
func
(
b
*
SpanBatchBuilder
)
Reset
()
{
...
...
op-node/rollup/derive/span_batch_test.go
View file @
06c495e0
...
@@ -328,18 +328,18 @@ func TestSpanBatchDerive(t *testing.T) {
...
@@ -328,18 +328,18 @@ func TestSpanBatchDerive(t *testing.T) {
require
.
NoError
(
t
,
err
)
require
.
NoError
(
t
,
err
)
blockCount
:=
len
(
singularBatches
)
blockCount
:=
len
(
singularBatches
)
require
.
Equal
(
t
,
safeL2Head
.
Hash
.
Bytes
()[
:
20
],
spanBatchDerived
.
p
arentCheck
[
:
])
require
.
Equal
(
t
,
safeL2Head
.
Hash
.
Bytes
()[
:
20
],
spanBatchDerived
.
P
arentCheck
[
:
])
require
.
Equal
(
t
,
singularBatches
[
blockCount
-
1
]
.
Epoch
()
.
Hash
.
Bytes
()[
:
20
],
spanBatchDerived
.
l
1OriginCheck
[
:
])
require
.
Equal
(
t
,
singularBatches
[
blockCount
-
1
]
.
Epoch
()
.
Hash
.
Bytes
()[
:
20
],
spanBatchDerived
.
L
1OriginCheck
[
:
])
require
.
Equal
(
t
,
len
(
singularBatches
),
int
(
rawSpanBatch
.
blockCount
))
require
.
Equal
(
t
,
len
(
singularBatches
),
int
(
rawSpanBatch
.
blockCount
))
for
i
:=
1
;
i
<
len
(
singularBatches
);
i
++
{
for
i
:=
1
;
i
<
len
(
singularBatches
);
i
++
{
require
.
Equal
(
t
,
spanBatchDerived
.
batches
[
i
]
.
Timestamp
,
spanBatchDerived
.
b
atches
[
i
-
1
]
.
Timestamp
+
l2BlockTime
)
require
.
Equal
(
t
,
spanBatchDerived
.
Batches
[
i
]
.
Timestamp
,
spanBatchDerived
.
B
atches
[
i
-
1
]
.
Timestamp
+
l2BlockTime
)
}
}
for
i
:=
0
;
i
<
len
(
singularBatches
);
i
++
{
for
i
:=
0
;
i
<
len
(
singularBatches
);
i
++
{
require
.
Equal
(
t
,
singularBatches
[
i
]
.
EpochNum
,
spanBatchDerived
.
b
atches
[
i
]
.
EpochNum
)
require
.
Equal
(
t
,
singularBatches
[
i
]
.
EpochNum
,
spanBatchDerived
.
B
atches
[
i
]
.
EpochNum
)
require
.
Equal
(
t
,
singularBatches
[
i
]
.
Timestamp
,
spanBatchDerived
.
b
atches
[
i
]
.
Timestamp
)
require
.
Equal
(
t
,
singularBatches
[
i
]
.
Timestamp
,
spanBatchDerived
.
B
atches
[
i
]
.
Timestamp
)
require
.
Equal
(
t
,
singularBatches
[
i
]
.
Transactions
,
spanBatchDerived
.
b
atches
[
i
]
.
Transactions
)
require
.
Equal
(
t
,
singularBatches
[
i
]
.
Transactions
,
spanBatchDerived
.
B
atches
[
i
]
.
Transactions
)
}
}
}
}
}
}
...
@@ -508,8 +508,8 @@ func TestSpanBatchBuilder(t *testing.T) {
...
@@ -508,8 +508,8 @@ func TestSpanBatchBuilder(t *testing.T) {
for
i
:=
0
;
i
<
len
(
singularBatches
);
i
++
{
for
i
:=
0
;
i
<
len
(
singularBatches
);
i
++
{
spanBatchBuilder
.
AppendSingularBatch
(
singularBatches
[
i
],
seqNum
)
spanBatchBuilder
.
AppendSingularBatch
(
singularBatches
[
i
],
seqNum
)
require
.
Equal
(
t
,
i
+
1
,
spanBatchBuilder
.
GetBlockCount
())
require
.
Equal
(
t
,
i
+
1
,
spanBatchBuilder
.
GetBlockCount
())
require
.
Equal
(
t
,
singularBatches
[
0
]
.
ParentHash
.
Bytes
()[
:
20
],
spanBatchBuilder
.
spanBatch
.
p
arentCheck
[
:
])
require
.
Equal
(
t
,
singularBatches
[
0
]
.
ParentHash
.
Bytes
()[
:
20
],
spanBatchBuilder
.
spanBatch
.
P
arentCheck
[
:
])
require
.
Equal
(
t
,
singularBatches
[
i
]
.
EpochHash
.
Bytes
()[
:
20
],
spanBatchBuilder
.
spanBatch
.
l
1OriginCheck
[
:
])
require
.
Equal
(
t
,
singularBatches
[
i
]
.
EpochHash
.
Bytes
()[
:
20
],
spanBatchBuilder
.
spanBatch
.
L
1OriginCheck
[
:
])
}
}
rawSpanBatch
,
err
:=
spanBatchBuilder
.
GetRawSpanBatch
()
rawSpanBatch
,
err
:=
spanBatchBuilder
.
GetRawSpanBatch
()
...
...
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