Sidechains-SDK icon indicating copy to clipboard operation
Sidechains-SDK copied to clipboard

API call responses should terminate with a newline character

Open cronicc opened this issue 3 years ago • 0 comments

Currently:

curl -X POST "http://$IP:9085/wallet/allBoxes" -H "accept: application/json"
{
  "result" : {
    "boxes" : [ ]
  }
}user@host:~$

Better:

curl -X POST "http://$IP:9085/wallet/allBoxes" -H "accept: application/json"
{
  "result" : {
    "boxes" : [ ]
  }
}
user@host:~$

cronicc avatar Aug 06 '21 10:08 cronicc