Kudaraidee / yiimp

Crypto mining pool
61 stars 116 forks source link

ERROR: rpc_do_call: 127.0.0.1:70 404 #74

Open diabaths opened 1 year ago

diabaths commented 1 year ago

16:37:49: connecting to coind GSPC 16:37:49: gspcoin wallet is using getaddressinfo. 16:37:50: ERROR: rpc_do_call: 127.0.0.1:70 404

any idea i have ask also in the discord and i dont get any answer !!!

xiaolin1579 commented 1 year ago

Use the command "getnewaddress" and put wallet_address in the Master Wallet.

diabaths commented 1 year ago

i spot the prob https://gyazo.com/d6089dc667e31dcd220ce2badaa2fd86 AUX POW always auto tick and give me the error and i dont know how to disable it

xiaolin1579 commented 1 year ago

i spot the prob https://gyazo.com/d6089dc667e31dcd220ce2badaa2fd86 AUX POW always auto tick and give me the error and i dont know how to disable it

Try uncheck AUX POW

diabaths commented 1 year ago

return to auto itself i have try 100 times and after less than a min its enable!

nitrocon commented 1 year ago

I have installed GSPC and dont have that specific problem (got others), but, is youre wallet synced? yiimp has problems savong confs when the daemon is not synced are you using the correct daemon version? correct gspcoin.conf? any error message in the error field?

diabaths commented 1 year ago

i think yes but i dont know how the aux_pow is comming up and enabl its self any way to manual disable it ??? for the php files?

ayyo2765 commented 1 year ago

https://github.com/Kudaraidee/yiimp/blob/dev/web/yaamp/core/backend/coins.php#L118-L126

I don't see why it would be turning back on constantly. The code that sets it only runs if "auxpow" is "null" in the db. After it runs once the value should be either be 0 or 1, and so that function will never run again.

Are you re-adding the coin multiple times? Each time would be creating a new coin id in the db, along with null values. That would explain why it seems like it's always turning on.

I would try to keep using the same coin id and then changing the value of "auxpow" to "0" in "coins" in the db first before any removing code.

UPDATE `coins` SET `auxpow` = 0 WHERE `symbol` = 'GSPC';