Skip to content

Wrong minimum fee for sendMoneyEscrow and escrowSign #677

Open
@deleterium

Description

@deleterium

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.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions