Skip to content

Commit

Permalink
decode into a pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
zvolin committed Nov 11, 2024
1 parent 89178ee commit 5ead38d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blob/commitment_proof.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func (commitmentProof *CommitmentProof) UnmarshalJSON(data []byte) error {
return err
}
rowProof := proof.RowProof{}
if err := tmjson.Unmarshal(aux.RowProof, rowProof); err != nil {
if err := tmjson.Unmarshal(aux.RowProof, &rowProof); err != nil {
return err
}

Expand Down

0 comments on commit 5ead38d

Please sign in to comment.