issue-15 #21

Merged
sebastian merged 60 commits from issue-15 into main 2024-03-22 07:46:49 +00:00
Showing only changes of commit 49154058fc - Show all commits

View File

@ -17,7 +17,7 @@ export class ScriptAccountCondition {
}
extendCondition(condition: ScriptAccountCondition) {
if(!this.isContradicting(condition)) {
if(!this.isContradicting(condition) && this.scriptAccount === condition.scriptAccount) {
this.minValue = Math.min(this.minValue, condition.minValue);
this.maxValue = Math.max(this.maxValue, condition.maxValue);
}