Skip to content

Commit 9a02fe9

Browse files
authored
adds commas to epoch event parameters (#218)
* adds commas to event parameters * remves comment
1 parent 0d7187b commit 9a02fe9

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

contracts/epochs/FlowEpoch.cdc

+2-3
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ pub contract FlowEpoch {
6868
/// Includes:
6969
/// nodeID, staking key, networking key, networking address, role,
7070
/// staking information, weight, and more.
71-
nodeInfo: [FlowIDTableStaking.NodeInfo]
71+
nodeInfo: [FlowIDTableStaking.NodeInfo],
7272

7373
/// The first view (inclusive) of the upcoming epoch.
7474
firstView: UInt64,
@@ -106,8 +106,7 @@ pub contract FlowEpoch {
106106
/// The result of the QC aggregation process. Each element contains
107107
/// all the nodes and votes received for a particular cluster
108108
/// QC stands for quorum certificate that each cluster generates.
109-
/// TODO: define ordering
110-
clusterQCs: [FlowClusterQC.ClusterQC]
109+
clusterQCs: [FlowClusterQC.ClusterQC],
111110

112111
/// The resulting public keys from the DKG process, encoded as by the flow-go
113112
/// crypto library, then hex-encoded.

0 commit comments

Comments
 (0)