protected NeuraliumBlockValidationErrorCodes()
        {
            this.SetOffset(10_000);

            this.TIP_REQUIRED     = this.CreateChildConstant();
            this.INSUFFICIENT_TIP = this.CreateChildConstant();

            //this.PrintValues(";");
        }
 protected NeuraliumBlockValidationErrorCode CreateChildConstant(NeuraliumBlockValidationErrorCode offset = default)
 {
     return(new NeuraliumBlockValidationErrorCode(base.CreateChildConstant(offset).Value));
 }
 public NeuraliumBlockValidationResult(ValidationResults result, NeuraliumBlockValidationErrorCode errorCode) : base(result, errorCode)
 {
 }