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: openapi/SwarmCommon.yaml
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -825,6 +825,9 @@ components:
825
825
type: boolean
826
826
isHealthy:
827
827
type: boolean
828
+
enabled:
829
+
type: boolean
830
+
description: Whether the node will commit in new redistribution rounds. A disabled node still finishes a round that already has an on-chain commit. Re-enabling during a commit phase that was already skipped does not retry that round; participation resumes on the next sample/commit cycle.
828
831
phase:
829
832
type: string
830
833
round:
@@ -846,6 +849,21 @@ components:
846
849
fees:
847
850
$ref: "#/components/schemas/BigInt"
848
851
852
+
RedistributionEnableRequest:
853
+
type: object
854
+
required:
855
+
- enabled
856
+
properties:
857
+
enabled:
858
+
type: boolean
859
+
description: Whether the node should enter new redistribution rounds.
0 commit comments