From e29e0e4f013dad4909f1f9cf3fb6d7848fff6fe8 Mon Sep 17 00:00:00 2001 From: zgrguric Date: Sat, 15 Nov 2025 12:51:09 +0100 Subject: [PATCH] Refactor flag checks - add hsfOVERRIDE for install op --- index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 1bf5039..38965c4 100644 --- a/index.html +++ b/index.html @@ -1082,7 +1082,11 @@ var xrpl;(()=>{var e={54373:(e,t)=>{"use strict";function r(e){if(!Number.isSafe (this.new.CreateCode !== undefined && this.new.CreateCode !== "") //OR CreateCode is specified and not blank ) && ( - this.new.Flags !== undefined && (this._isFlagSet(this.new.Flags,1) || this.new.Flags == 0) //Flags is specified and have hsfOVERRIDE or is without override as 0 + this.new.Flags !== undefined && ( //Flags is specified + this._isFlagSet(this.new.Flags,1) || //has override + this.new.Flags == 0 || //without override as 0 + this.new.Flags == 4 //without override but collect calls only + ) ) // && !this._isFlagSet(this.new.Flags,2) //hsfNSDELETE namespace delete flag is forbidden ) {