-
Notifications
You must be signed in to change notification settings - Fork 223
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
Changing TransactionV1
structure. From now on a TransactionV1
con…
#4890
Merged
casperlabs-bors-ng
merged 9 commits into
casper-network:feat-2.0
from
zajko:restructuring_transaction_datatype
Oct 17, 2024
Merged
Changing TransactionV1
structure. From now on a TransactionV1
con…
#4890
casperlabs-bors-ng
merged 9 commits into
casper-network:feat-2.0
from
zajko:restructuring_transaction_datatype
Oct 17, 2024
Conversation
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
zajko
force-pushed
the
restructuring_transaction_datatype
branch
4 times, most recently
from
September 17, 2024 14:54
4b80341
to
e4679ab
Compare
gRoussac
reviewed
Sep 17, 2024
gRoussac
reviewed
Sep 17, 2024
zajko
force-pushed
the
restructuring_transaction_datatype
branch
3 times, most recently
from
September 18, 2024 12:57
92b3a87
to
9252a9b
Compare
zajko
force-pushed
the
restructuring_transaction_datatype
branch
11 times, most recently
from
September 27, 2024 21:34
ed9227d
to
e009a45
Compare
zajko
force-pushed
the
restructuring_transaction_datatype
branch
from
October 1, 2024 12:16
269ff6f
to
43b8bcf
Compare
zajko
requested review from
EdHastingsCasperAssociation,
mpapierski,
fizyk20,
gRoussac and
darthsiroftardis
October 3, 2024 09:54
…s of `hash`, `payload` and `approvals`. `payload` is a merge of `header` and `body` concepts from before. `body` is not represented in a type-constrained way, instead we use an amorphic `fields` of type `BTreeMap<u16, Bytes>` which is more resistant to future changes.
zajko
force-pushed
the
restructuring_transaction_datatype
branch
from
October 10, 2024 10:52
68347b0
to
078e98e
Compare
gRoussac
reviewed
Oct 10, 2024
gRoussac
reviewed
Oct 10, 2024
EdHastingsCasperAssociation
approved these changes
Oct 15, 2024
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'd like to get this merged...it seems basically solid, and if there remains some fit & finish we can deal with it via bug report
gRoussac
reviewed
Oct 16, 2024
bors r+ |
Build succeeded: |
casperlabs-bors-ng
bot
merged commit Oct 17, 2024
6e9f849
into
casper-network:feat-2.0
3 checks passed
gRoussac
added a commit
to casper-ecosystem/casper-client-rs
that referenced
this pull request
Oct 17, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
…sists of
hash
,payload
andapprovals
.payload
is a merge ofheader
andbody
concepts from before.body
is not represented in a type-constrained way, instead we use an amorphicfields
of typeBTreeMap<u16, Bytes>
which is more resistant to future changes.