Pages:
Author

Topic: [ANN][POOLS] CryptoNote Universal Pool Solution - page 5. (Read 39326 times)

legendary
Activity: 2744
Merit: 1387
Ukrainians will resist
Payments after updating the daemon and wallet do not work.
Balance is, here's the error:
Code:
2017-05-27 06:42:50 [payments] Error with send_transaction RPC request to wallet daemon {"code":-4,"message":"Wrong amount"}
2017-05-27 06:42:50 [payments] Payments failed to send to {"amount":3590000000000,"address":"bip1kRwJajj4MKYQf8wWGDSbUpftNJL2Yh9qnxM8akEsJW92sXNuG73EiMjKTcG8VcCqDWpjjRo3A8zR8sPD4BXW5Bea32Vmoe"} { amount: 412390000000000,


how to fix?
hero member
Activity: 699
Merit: 510
hi all, im needing help...
this may sound strange but i cant find what port for the frontend website...
i just setup everything nice on my local network...setup also no-ip for vps servers and renting hash....bu i cant see the frontend not on port 80 or 8080 or any other lol

what im i missing please.....some help
hero member
Activity: 826
Merit: 1000
can you tell me there is not instruction how to create demon config file and rpc detail setup ..and then how to connect to the pool software ?? can you provide instruction and to the demon wallet also ..

as for bitcoin litecoin it has but in rede me  file ti just said to compile the latest demon nothing else
legendary
Activity: 2744
Merit: 1387
Ukrainians will resist
Admin Center missing statistics on miners.
How to fix?

try to change return in getReadableHashRateString function in admin.html:

Code:
return parseInt(hashrate).toFixed(2) + byteUnits;
Where to enter it?

find getReadableHashRateString function in admin.html file and replace
Code:
return hashrate.toFixed(2) + byteUnits[i];
with
Code:
return parseInt(hashrate).toFixed(2) + byteUnits;

https://github.com/forknote/forknote-pool/blob/master/website/admin.html line 130
Thank you help!
Now, as shown:
Code:
118.00 H, KH, MH, GH, TH, PH/s
   
Not quite familiar.
member
Activity: 68
Merit: 10
Admin Center missing statistics on miners.
How to fix?

try to change return in getReadableHashRateString function in admin.html:

Code:
return parseInt(hashrate).toFixed(2) + byteUnits;
Where to enter it?

find getReadableHashRateString function in admin.html file and replace
Code:
return hashrate.toFixed(2) + byteUnits[i];
with
Code:
return parseInt(hashrate).toFixed(2) + byteUnits;

https://github.com/forknote/forknote-pool/blob/master/website/admin.html line 130
legendary
Activity: 2744
Merit: 1387
Ukrainians will resist
Admin Center missing statistics on miners.
How to fix?

try to change return in getReadableHashRateString function in admin.html:

Code:
return parseInt(hashrate).toFixed(2) + byteUnits;
Where to enter it?
member
Activity: 68
Merit: 10
Admin Center missing statistics on miners.
How to fix?

try to change return in getReadableHashRateString function in admin.html:

Code:
return parseInt(hashrate).toFixed(2) + byteUnits;
legendary
Activity: 2744
Merit: 1387
Ukrainians will resist
I have this:
Code:
 },                                                                              
        "wallet": {                                                                     
            "checkInterval": 60,                                                       
            "rpcMethod": "getbalance"                                                   
        }                                                                               
    }
slb
hero member
Activity: 598
Merit: 501
legendary
Activity: 2744
Merit: 1387
Ukrainians will resist
Admin Center missing statistics on miners.
How to fix?
legendary
Activity: 2744
Merit: 1387
Ukrainians will resist
And how to add display of exchange rates on the home page using the API Cryptopia?
Please help me for the reward.
newbie
Activity: 7
Merit: 0
Anyone can help me? This errors i have in admin.
Wich settings i need to change?

Wallet
Last check: less than a minute ago
Last status: fail
Last response:
{"code":-32601,"message":"Method not found"}
Last fail: less than a minute ago
Last fail response:
{"code":-32601,"message":"Method not found"}

i run:
./xcicoind &
./simplewallet --wallet ***.wallet --pass *** --daemon-port 42001 --rpc-bind-port 8082

Code:
xcicoin wallet v1.1.1.1()
Loading wallet...
available balance: 0.00000000, locked amount: 0.00000000
Loaded ok
Starting wallet rpc server
Incoming connection from 127.0.0.1:59306
Closing connection from 127.0.0.1:59306 total=1
Incoming connection from 127.0.0.1:60736
Closing connection from 127.0.0.1:60736 total=1
Incoming connection from 127.0.0.1:33951
Closing connection from 127.0.0.1:33951 total=1
Anyone can help me to install this pool?Huh
legendary
Activity: 1260
Merit: 1008
Hello again -

Does anyone know if the donation addresses in the universal pool are still active?

I'm definitely a fan of supporting open source software development, but I'd rather the coins be going to accounts that are still functional - i.e., people still can access them. If these payments are essentially being burned I would like to know.

XMR address 1:
45Jmf8PnJKziGyrLouJMeBFw2yVyX1QB52sKEQ4S1VSU2NVsaVGPNu4bWKkaHaeZ6tWCepP6iceZk8X hTLzDaEVa72QrtVh

XMR address 2:
43JNtJkxnhX789pJnCV6W4DQt8BqAWVoV4pqjGiWZ9845ee3aTBRBibMBzSziQi9BD5aEEpegQjLwgu UgsXecB5bCY5wrMe

legendary
Activity: 1260
Merit: 1008
Hello -

I don't know which git fork is actively monitored, so i just wanted to cross post:

https://github.com/clintar/cryptonote-universal-pool/issues/1

sr. member
Activity: 357
Merit: 250
Is it possible to let this pool software work with other algo? scrypt for example.
full member
Activity: 338
Merit: 100
https://eloncity.io/
fix for missing users list in admin....

in admin.html

replace
   return hashrate.toFixed(2) + byteUnits;
with
   return parseInt(hashrate).toFixed(2) + byteUnits;

in function

  function getReadableHashRateString(hashrate) {
                hashrate = hashrate || 0;
                var i = 0;
                var byteUnits = [' H', ' KH', ' MH', ' GH', ' TH', ' PH' ];
                while(hashrate > 1024) {
                        hashrate = hashrate / 1024;
                        i++;
                }
                 return parseInt(hashrate).toFixed(2) + byteUnits;
        }
jr. member
Activity: 32
Merit: 10
Hi, good work on the pool, how is the multi switch coin doing ?
Could be great to implement an alert function when a block is found (mail)
member
Activity: 84
Merit: 10
Hi guys!

There is an issue about this case already https://github.com/fancoder/cryptonote-universal-pool/issues/24
We'll fix it soon, when we'll have more free time.

Thanks for the report tho!
slb
hero member
Activity: 598
Merit: 501
What happens if a transfer passes through the daemon (it does not fail), but is not included in the blockchain? Is it counted as successful or failed after 24 hours? Is this kind of check implemented in the source code?
I can confirm transactions not included in the blockchain but passed the daemon check are counted as paid, which is very wrong. A check must be implemented as this is a major flaw in the pool design.
slb
hero member
Activity: 598
Merit: 501
What happens if a transfer passes through the daemon (it does not fail), but is not included in the blockchain? Is it counted as successful or failed after 24 hours? Is this kind of check implemented in the source code?
Pages:
Jump to: