Skip to content

Commit

Permalink
fix: fix wrong change of loop start variable
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsporn committed Jan 10, 2025
1 parent cca84de commit 46ecc8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/iota-protocol-config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1635,7 +1635,7 @@ impl ProtocolConfig {
cfg.feature_flags.passkey_auth = true;
}

for cur in MAX_PROTOCOL_VERSION..=version.0 {
for cur in 2..=version.0 {
match cur {
1 => unreachable!(),
// version 2 is a new framework version but with no config changes
Expand Down

0 comments on commit 46ecc8c

Please sign in to comment.