We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d39030 commit 12b48aaCopy full SHA for 12b48aa
validations/src/validations.rs
@@ -203,7 +203,7 @@ pub fn validate_commit_collateral(
203
// Special requirement for facilitating the 2.0 transition.
204
// Every committer is required to have a total balance of at least 100 wits.
205
// This works independently from the minimum collateral requirement.
206
- if epoch > 2_245_000 {
+ if protocol_version < ProtocolVersion::V2_0 && epoch > 2_245_000 {
207
let committer = vt_output.pkh;
208
let mut balance = 0;
209
utxo_diff.get_utxo_set().visit_with_pkh(
0 commit comments