BitBotFactory / MikaLendingBot

Automated lending on Cryptocurrency exchanges Poloniex and Bitfinex
http://poloniexlendingbot.readthedocs.io/en/latest/index.html
MIT License
1.11k stars 344 forks source link

ERROR: 'provided' #36

Closed ghost closed 8 years ago

ghost commented 8 years ago

I don't know what happened, it says Welcome to Poloniex Lending Bot then the next line it says ERROR: 'provided'

rnevet commented 8 years ago

Might be an api key issue, try replacing it with a new one.

martinkrung commented 8 years ago

had the same problem, because '

apikey = 'XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX' secret = 'd41d8cd98f00b204e9800998ecf8427ed41d8cd98f00b204e9800998ecf8427e'

is not working..

without quotes it works:

apikey = XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX secret = d41d8cd98f00b204e9800998ecf8427ed41d8cd98f00b204e9800998ecf8427e

martinkrung commented 8 years ago

Me again

I get this error in another case, because of the nonce:

        req['nonce'] = int(time.time()*1000)

change it to this and it works:

        req['nonce'] = int(time.time()*4222)
martinkrung commented 8 years ago

here is a fix: https://github.com/Mikadily/poloniexlendingbot/pull/38

or use my repro: https://github.com/martinkrung/poloniexlendingbot

Webonaute commented 8 years ago

It not fix the issue for me!

ghostnegotiator commented 8 years ago

@Webonaute mind telling me which binary you are running?

FYI: You need the lendingbot.py and not poloniex.py :)

Webonaute commented 8 years ago

Its my launch script I run in cronjob every minute :

#!/bin/bash if [[ !pgrep -f "python lendingbot.py"]]; then echo "Application not found. Starting..." cd /home/poloniex/poloniexlendingbot; python lendingbot.py > poloniex.log 2>&1 & echo "done" fi

Webonaute commented 8 years ago

And the script was running fine in the last 2 month! 2 day ago, it stop working

ghostnegotiator commented 8 years ago

@Webonaute try to remake the configuration file.

m33Lucky commented 8 years ago

Fix #38 no working for me , apply for new api , with unrestricted access , works , If change to fix ip , error = provided . Bot working now , but won't spread the lend , dumps max amount after mindailyrate

Webonaute commented 8 years ago

I rewroted the python script in PHP finaly lol! now I can play a little more with the code!

Mikadily commented 8 years ago

@m33Lucky for more aggressive spreading you need to play with gaptop, try increasing it 10x, 100x, 1000x or even more.

Evanito commented 8 years ago

Original bug solved. Closing.

MYBOT commented 7 years ago

can you have a copy of the PHP @Webonaute