You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/ffcapi/api.go
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -97,33 +97,33 @@ type API interface {
97
97
98
98
typeConfirmationMapUpdateResultstruct {
99
99
*ConfirmationMap
100
-
HasNewForkbool`json:"hasNewFork,omitempty"`// when set to true, it means a fork is detected based on the existing confirmations
101
-
Rebuiltbool`json:"rebuilt,omitempty"`// when set to true, it means all of the existing confirmations are discarded
102
-
HasNewConfirmationbool`json:"hasNewConfirmation,omitempty"`// when set to true, it means new blocks from canonical chain are added to the confirmation queue
103
-
Confirmedbool`json:"confirmed,omitempty"`// when set to true, it means the confirmation queue is complete and all the blocks are confirmed
104
-
TargetConfirmationCountint`json:"targetConfirmationCount"`// the target number of confirmations for this event
100
+
HasNewForkbool`json:"hasNewFork,omitempty"`// when set to true, it means a fork is detected based on the existing confirmations
101
+
Rebuiltbool`json:"rebuilt,omitempty"`// when set to true, it means all of the existing confirmations are discarded
102
+
HasNewConfirmationbool`json:"hasNewConfirmation,omitempty"`// when set to true, it means new blocks from canonical chain are added to the confirmation queue
103
+
Confirmedbool`json:"confirmed,omitempty"`// when set to true, it means the confirmation queue is complete and all the blocks are confirmed
104
+
TargetConfirmationCountfftypes.FFuint64`json:"targetConfirmationCount"`// the target number of confirmations for this event
105
105
}
106
106
107
107
typeConfirmationMapstruct {
108
108
// confirmation map is contains a list of possible confirmations for a transaction
109
109
// the key is the hash of the first block that contains the transaction hash
110
110
// the first block is the block that contains the transaction hash
0 commit comments