Hello,
I'm getting the error "{ type: 'suspended', message: 'Account is suspended' }" with this code:
Client.createInvoice({
"price": "0.003",
"currency": "BTC"
}, (err, invoice) => {
if(err) console.error(err)
console.log(invoice)
})
Tho, my account isn't suspended... What's wrong<?
Thanks