Skip to content
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

fix: update TUNA v2 shape #68

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions tuna.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,11 @@ type TunaV2State struct {
LeadingZeros int64
DifficultyNumber int64
EpochTime int64
RealTimeNow int64
Interlink [][]byte
Extra any
CurrentPosixTime int64
MerkleRoot []byte
}

func (t *TunaV2State) MarshalCBOR() ([]byte, error) {
var tmpInterlink []any
for _, item := range t.Interlink {
tmpInterlink = append(tmpInterlink, item)
}
tmp := cbor.NewConstructor(
0,
cbor.IndefLengthList{
Expand All @@ -91,9 +86,8 @@ func (t *TunaV2State) MarshalCBOR() ([]byte, error) {
t.LeadingZeros,
t.DifficultyNumber,
t.EpochTime,
t.RealTimeNow,
cbor.IndefLengthList(tmpInterlink),
t.Extra,
t.CurrentPosixTime,
t.MerkleRoot,
},
)
return cbor.Encode(&tmp)
Expand Down