-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# 20. Harden closing of a DAO motion voting | ||
|
||
Date: 2024-05-02 | ||
|
||
## Status | ||
|
||
Accepted | ||
|
||
## Context | ||
|
||
See [here](https://github.com/threefoldtech/tfchain/issues/889) for more | ||
details. | ||
|
||
## Decision | ||
|
||
In `propose()` extrinsic, set a minimum threshold `MotionMinThreshold` of 5 | ||
votes for a motion to be proposed and if threshold is lower then return error | ||
`TresholdTooLow`. Also in `propose()`extrinsic, add a minimum motion duration of | ||
1 day and return error `InvalidProposalDuration` if optional duration is not set | ||
in the 1 day - 30 days interval. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 21. Allow 'only hdd' nodes to register on chain | ||
|
||
Date: 2024-05-22 | ||
|
||
## Status | ||
|
||
Accepted | ||
|
||
## Context | ||
|
||
See [here](https://github.com/threefoldtech/tfchain/issues/967) for more | ||
details. | ||
|
||
## Decision | ||
|
||
Similar to what already exists for SSD, add a minimum HDD size requirement (also | ||
100 GB) on `resources.validate_hru()`. Then, on validating, make sure node has | ||
at least 1 minimum storage capacity available. |