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.
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
Linked lists for the state trie #402
Linked lists for the state trie #402
Changes from all commits
a50e2db
52dc55d
d242757
4558a38
c369aa5
ecf0e86
65773d8
c9e3b4f
ba87c79
6fc8c22
31a850f
d1df4c5
7689629
29b79b1
edfc137
796087b
566ccb5
12e63ea
c1f47dd
9a9323d
6c93057
48d1cfe
c938cad
dba0967
8a386f9
5deb97d
fbb216b
8c3ac79
1232b9a
5d43ff4
bd1215d
c4f410d
f650e8a
55255f6
128f614
95e3001
660a4f4
b9e2307
287cddd
9915fed
9a28eb5
09a03b2
7661bce
2b666db
a144892
dbc5a6a
6bea276
7660051
67fd5cb
f0068aa
885fe35
a4c3f91
3922c06
24e6e6b
4355a51
33235a9
f54864a
8945002
87b0c63
ef231c0
44e316e
29ca9df
bf91f44
c7ac311
bc7341d
f34c4ed
b83871d
c6fed71
268604e
7e99b14
f769fa6
cc71c4b
5d4737d
8111883
05d75ab
f35c2c8
9bed611
244c9a8
54b360a
da7902b
1f8d853
ca490c1
a9dc130
c07c4a4
cb93551
53708dd
c1d8b4c
eaddcc1
29c23a9
9c2a58b
d1a647e
71e3eee
352767f
a31692a
2ce9465
9d6072b
899d471
c9ad38e
e4adcb0
5717dbc
bb4e2d2
99d0b8a
e59e282
ac6f85e
74c55a6
6aeb8d3
6a10adc
af1c2c0
e395474
5074895
6e043f9
09a4967
439b4a0
d3dd09a
b9b8c5c
9d994c1
1756b03
19aa264
e725678
6436d12
dcf0575
97b21af
94a61e7
3c915f3
526c456
b992e9e
d9840d4
b0c4248
80212ae
7445d53
b46da0e
04ab8f7
90cb9d1
f92c4eb
c0f8886
7e7deb0
b7e9d6c
3b1fe8a
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Maybe we can make use of this call to validate the initial value of
@GLOBAL_METADATA_ACCOUNTS_LINKED_LIST_LEN
, if we store it somewhere?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.
Or maybe it would be easier to check it in
store_initial_accounts
(resp. `store_initial_slots) since we're iterating over the accounts (resp. slots) there?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 removed the PROVER_INPUT calls and computed the lengths in
store_initial_accounts
andstore_initial_slots
directly