Closed Filoz closed 6 years ago
Hi, I get "Nonce is too small." when I try to get balance in Bitfinex (using rest API). Changing the nonce from $data["nonce"] = strval(round(microtime(true) * 10,0)); to $data["nonce"] = strval(round(microtime(true) * 10000,0)); solved the problem
$data["nonce"] = strval(round(microtime(true) * 10,0));
$data["nonce"] = strval(round(microtime(true) * 10000,0));
Others bot had the same problem: https://github.com/BitBotFactory/poloniexlendingbot/issues/470
Thanks
Hi, I get "Nonce is too small." when I try to get balance in Bitfinex (using rest API). Changing the nonce from
$data["nonce"] = strval(round(microtime(true) * 10,0));
to$data["nonce"] = strval(round(microtime(true) * 10000,0));
solved the problemOthers bot had the same problem: https://github.com/BitBotFactory/poloniexlendingbot/issues/470