@@ -94,17 +94,19 @@ type (
9494 // Whether the block is solid.
9595 Solid bool `json:"isSolid"`
9696 // The milestone index that references this block.
97- ReferencedByMilestoneIndex * iotago.MilestoneIndex `json:"referencedByMilestoneIndex,omitempty"`
97+ ReferencedByMilestoneIndex iotago.MilestoneIndex `json:"referencedByMilestoneIndex,omitempty"`
9898 // If this block represents a milestone this is the milestone index
99- MilestoneIndex * iotago.MilestoneIndex `json:"milestoneIndex,omitempty"`
99+ MilestoneIndex iotago.MilestoneIndex `json:"milestoneIndex,omitempty"`
100100 // The ledger inclusion state of the transaction payload.
101- LedgerInclusionState * string `json:"ledgerInclusionState,omitempty"`
101+ LedgerInclusionState string `json:"ledgerInclusionState,omitempty"`
102102 // Whether the block should be promoted.
103103 ShouldPromote * bool `json:"shouldPromote,omitempty"`
104104 // Whether the block should be reattached.
105105 ShouldReattach * bool `json:"shouldReattach,omitempty"`
106106 // The reason why this block is marked as conflicting.
107107 ConflictReason uint8 `json:"conflictReason,omitempty"`
108+ // If this block is referenced by a milestone this returns the index of that block inside the milestone by whiteflag ordering.
109+ WhiteFlagIndex * uint32 `json:"whiteFlagIndex,omitempty"`
108110 }
109111
110112 // ChildrenResponse defines the response of a GET children REST API call.
0 commit comments