Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rigidity committed Oct 31, 2024
1 parent a2fd23e commit 37763bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/classic/clvm_tools/stages/stage_2/operators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ impl CompilerOperatorsInternal {
let ops_version = self
.get_operators_version()
.unwrap_or(OPERATORS_LATEST_VERSION);
if ops_version == 0 {
OperatorSet::Default
if ops_version > 1 {
OperatorSet::Keccak
} else {
OperatorSet::BLS
OperatorSet::Default
}
}

Expand Down

0 comments on commit 37763bf

Please sign in to comment.