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
e0ec50ed
Commit
e0ec50ed
authored
Dec 11, 2023
by
Joshua Gutow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix line length lint
parent
5c44c9e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
span-batches.md
specs/span-batches.md
+3
-3
No files found.
specs/span-batches.md
View file @
e0ec50ed
...
@@ -160,9 +160,9 @@ equal to `MAX_RLP_BYTES_PER_CHANNEL`). Therefore every field size of span batch
...
@@ -160,9 +160,9 @@ equal to `MAX_RLP_BYTES_PER_CHANNEL`). Therefore every field size of span batch
`MAX_SPAN_BATCH_SIZE`
. There can be at least single span batch per channel, and channel size is limited
`MAX_SPAN_BATCH_SIZE`
. There can be at least single span batch per channel, and channel size is limited
to
`MAX_RLP_BYTES_PER_CHANNEL`
and you may think that there is already an implicit limit. However, having an explicit
to
`MAX_RLP_BYTES_PER_CHANNEL`
and you may think that there is already an implicit limit. However, having an explicit
limit for span batch is helpful for several reasons. We may save computation costs by avoiding malicious input while
limit for span batch is helpful for several reasons. We may save computation costs by avoiding malicious input while
decoding. For example, let's say bad batcher wrote span batch which
`block_count = max.Uint64`
. We may early return
using
decoding. For example, let's say bad batcher wrote span batch which
`block_count = max.Uint64`
. We may early return
the explicit limit, not trying to consume data until EOF is reached. We can also safely preallocate memory for decoding
using the explicit limit, not trying to consume data until EOF is reached. We can also safely preallocate memory for
because we know the upper limit of memory usage.
decoding
because we know the upper limit of memory usage.
## Span batch Activation Rule
## Span batch Activation Rule
...
...
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