Skip to content

Commit 1fdb78a

Browse files
committed
fix merge
1 parent 85414f5 commit 1fdb78a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

clarity-serialization/src/types/signatures.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,8 @@ impl TypeSignature {
455455
| StacksEpochId::Epoch24
456456
| StacksEpochId::Epoch25
457457
| StacksEpochId::Epoch30
458-
| StacksEpochId::Epoch31 => self.admits_type_v2_1(other),
458+
| StacksEpochId::Epoch31
459+
| StacksEpochId::Epoch32 => self.admits_type_v2_1(other),
459460
StacksEpochId::Epoch10 => Err(CodecError::Expect("epoch 1.0 not supported".into())),
460461
}
461462
}
@@ -663,7 +664,8 @@ impl TypeSignature {
663664
| StacksEpochId::Epoch24
664665
| StacksEpochId::Epoch25
665666
| StacksEpochId::Epoch30
666-
| StacksEpochId::Epoch31 => self.canonicalize_v2_1(),
667+
| StacksEpochId::Epoch31
668+
| StacksEpochId::Epoch32 => self.canonicalize_v2_1(),
667669
}
668670
}
669671

@@ -957,7 +959,8 @@ impl TypeSignature {
957959
| StacksEpochId::Epoch24
958960
| StacksEpochId::Epoch25
959961
| StacksEpochId::Epoch30
960-
| StacksEpochId::Epoch31 => Self::least_supertype_v2_1(a, b),
962+
| StacksEpochId::Epoch31
963+
| StacksEpochId::Epoch32 => Self::least_supertype_v2_1(a, b),
961964
StacksEpochId::Epoch10 => Err(CodecError::Expect("epoch 1.0 not supported".into())),
962965
}
963966
}

0 commit comments

Comments
 (0)