Example #1
0
        protected NeuraliumTransactionValidationErrorCodes()
        {
            this.SetOffset(10_000);

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

            this.NEGATIVE_TIP   = this.CreateChildConstant();
            this.INVALID_AMOUNT = this.CreateChildConstant();

            //this.PrintValues(";");
        }
Example #2
0
 protected NeuraliumTransactionValidationErrorCode CreateChildConstant(NeuraliumTransactionValidationErrorCode offset = default)
 {
     return(new NeuraliumTransactionValidationErrorCode(base.CreateChildConstant(offset).Value));
 }
Example #3
0
 public NeuraliumTransactionValidationResult(ValidationResults result, NeuraliumTransactionValidationErrorCode errorCode) : base(result, errorCode)
 {
 }