Skip to content
New issue

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

Wrong minimum fee for sendMoneyEscrow and escrowSign #677

Open
deleterium opened this issue Oct 11, 2022 · 0 comments
Open

Wrong minimum fee for sendMoneyEscrow and escrowSign #677

deleterium opened this issue Oct 11, 2022 · 0 comments
Assignees

Comments

@deleterium
Copy link

It is stated at getConstants that escrow creation and escrow sign have minimum fee of 0.01 Signa. But trying to creating transactions, the node returns error if the fee is lower than 1 Signa.

getConstants

...
    {
      "value": 21,
      "description": "Advanced Payment",
      "subtypes": [
        {
          "value": 0,
          "description": "Escrow Creation",
          "minimumFeeConstantNQT": 1000000,
          "minimumFeeAppendagesNQT": 1000000
        },
        {
          "value": 1,
          "description": "Escrow Sign",
          "minimumFeeConstantNQT": 1000000,
          "minimumFeeAppendagesNQT": 1000000
        },
...

Response of a transaction with a fee lower than 1 Signa

{
    errorCode: 4
    errorDescription: "Escrow transaction must have a fee at least 1 burst"
    requestProcessingTime: 1
}

Expected result is that getConstant returns minimum fee of 1 Signa or the node accepts transaction with fee of 0,01 Signa.

@deleterium deleterium changed the title Wrong minimum fee for Wrong minimum fee for sendMoneyEscrow and escrowSign Oct 11, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants