We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using CommitteeInvoker in neotest to set fee policies. When testing with 0 as input for ExecFeeFactor and StoragePrice, it gives the error:
CommitteeInvoker
neotest
ExecFeeFactor
StoragePrice
at instruction 50 (SYSCALL): ExecFeeFactor must be between 0 and 100 ... at instruction 64 (SYSCALL): StoragePrice must be between 0 and 10000000
Error message should suggest an input between 1 and 100 for ExecFeeFactor and 1 or 10000000 for StoragePrice.
Fee per byte is happy with zero, I assume that is intended.
Testing the influence of fee adjustments on common transaction types. Encountered this issue while making test cases.
Windows 10 go v1.22.0 neo-go v0.105.1
The text was updated successfully, but these errors were encountered:
native: adjust error message for ExecFeeFactor and StoragePrice
fcbfc3b
Close #3311 Signed-off-by: Ekaterina Pavlova <[email protected]>
Successfully merging a pull request may close this issue.
Current Behavior
Using
CommitteeInvoker
inneotest
to set fee policies. When testing with 0 as input forExecFeeFactor
andStoragePrice
, it gives the error:Expected Behavior
Error message should suggest an input between 1 and 100 for
ExecFeeFactor
and 1 or 10000000 forStoragePrice
.Fee per byte is happy with zero, I assume that is intended.
Context
Testing the influence of fee adjustments on common transaction types. Encountered this issue while making test cases.
Your Environment
The text was updated successfully, but these errors were encountered: