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 03b9e37 commit 592bfdaCopy full SHA for 592bfda
src/stacks_tx/deserialize.rs
@@ -332,6 +332,7 @@ impl ClarityVersion {
332
x if x == ClarityVersion::Clarity1 as u8 => Some(ClarityVersion::Clarity1),
333
x if x == ClarityVersion::Clarity2 as u8 => Some(ClarityVersion::Clarity2),
334
x if x == ClarityVersion::Clarity3 as u8 => Some(ClarityVersion::Clarity3),
335
+ x if x == ClarityVersion::Clarity4 as u8 => Some(ClarityVersion::Clarity4),
336
_ => None,
337
}
338
@@ -681,6 +682,7 @@ pub enum ClarityVersion {
681
682
Clarity1 = 1,
683
Clarity2 = 2,
684
Clarity3 = 3,
685
+ Clarity4 = 4,
686
687
688
#[repr(u8)]
0 commit comments