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 a53f521 commit 9801daaCopy full SHA for 9801daa
interpreter/shared/src/test/scala/sigma/serialization/generators/ObjectGenerators.scala
@@ -574,20 +574,11 @@ trait ObjectGenerators extends TypeGenerators
574
} yield node
575
576
def numExprTreeGen: Gen[Value[SNumericType]] = {
577
- if(VersionContext.current.isV3OrLaterErgoTreeVersion) {
578
- Gen.oneOf(arbByteConstants.arbitrary,
579
- arbIntConstants.arbitrary,
580
- arbLongConstants.arbitrary,
581
- arbBigIntConstant.arbitrary,
582
- arbUnsignedBigIntConstant.arbitrary,
583
- Gen.delay(numExprTreeNodeGen))
584
- } else {
585
586
587
588
589
590
- }
+ Gen.oneOf(arbByteConstants.arbitrary,
+ arbIntConstants.arbitrary,
+ arbLongConstants.arbitrary,
+ arbBigIntConstant.arbitrary,
+ Gen.delay(numExprTreeNodeGen))
591
}
592
593
def comparisonExprTreeNodeGen: Gen[Value[SBoolean.type]] = for {
0 commit comments