Change docs to POST

This commit is contained in:
vctt94 2020-07-16 14:39:09 -03:00 committed by David Hill
parent 6f2a069047
commit 0a57bd3ce7
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ If `feetxstatus` is `error`, the client needs to provide a new fee transaction
using `/api/payfee`. The VSP will only add a ticket to the voting wallets once
its `feetxstatus` is `confirmed`.
- `GET /api/ticketstatus`
- `POST /api/ticketstatus`
Request:

View File

@ -7,7 +7,7 @@ import (
"github.com/gin-gonic/gin"
)
// ticketStatus is the handler for "GET /ticketstatus".
// ticketStatus is the handler for "POST /ticketstatus".
func ticketStatus(c *gin.Context) {
funcName := "ticketStatus"