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(";"); }
protected NeuraliumTransactionValidationErrorCode CreateChildConstant(NeuraliumTransactionValidationErrorCode offset = default) { return(new NeuraliumTransactionValidationErrorCode(base.CreateChildConstant(offset).Value)); }
public NeuraliumTransactionValidationResult(ValidationResults result, NeuraliumTransactionValidationErrorCode errorCode) : base(result, errorCode) { }