Skip to content

Commit

Permalink
fix block decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
fschoell committed Jun 10, 2024
1 parent bea5885 commit 73b3e08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codec/antelope/spring_v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ type LegacyBlockState struct {
BlockID eos.Checksum256 `json:"id"`
Header *eos.SignedBlockHeader `json:"header,omitempty"`
PendingSchedule *eos.PendingSchedule `json:"pending_schedule"`
ActivatedProtocolFeatures *eos.ProtocolFeatureActivationSet `json:"activated_protocol_features,omitempty"`
ActivatedProtocolFeatures *eos.ProtocolFeatureActivationSet `json:"activated_protocol_features,omitempty" eos:"optional"`
AdditionalSignatures []ecc.Signature `json:"additional_signatures"`

SignedBlock *SignedBlock `json:"block,omitempty"`
SignedBlock *SignedBlock `json:"block,omitempty" eos:"optional"`
Validated bool `json:"validated"`
ActionMrootSavanna eos.Checksum256 `json:"action_mroot_savanna,omitempty" eos:"optional"`
}
Expand Down

0 comments on commit 73b3e08

Please sign in to comment.