i am deploying bitcoinz pool and my config:
Coin:
{
"name": "Bitcoinz",
"symbol": "btcz",
"algorithm": "equihash",
"requireShielding": true,
"txfee": 0.0001
}
pool:"coin": "bitcoinz.json",
"coin": "bitcoinz.json",
"address": "t1PPKiaskZsSXZb.....",
"_comment_address": "a transparent address to send coinbase rewards to and to transfer to zAddress.",
"zAddress": "zcNus9QdXx3skhE5KzQx9.......
"_comment_zAddress": "a private address used to send coins to tAddress.",
"tAddress": "t1JrZXDy5N......",
"_comment_tAddress": "transparent address used to send payments, make this a different address, otherwise payments will not send",
"walletInterval": 2.5,
"rewardRecipients": {
"t1diyf84HoFYztg.....":1.5
},
"tlsOptions": {
"enabled": false,
"serverKey":"",
"serverCert":"",
},
"paymentProcessing": {
"minConf": 10,
"enabled": true,
"paymentMode": "prop",
"_comment_paymentMode":"prop, pplnt",
"paymentInterval": 20,
"minimumPayment": 100,
"maxBlocksPerPayment": 1,
"daemon": {
"host": "127.0.0.1",
"port": 3333,
"user": "xxxx",
"password": "xxx"
}
},
but always show the error
017-10-07 04:50:39 [Payments] [bitcoinz] Insufficient funds (0) to process payments (12312.5); possibly waiting for txs.
my balance
ubuntu@ip-172-31-34-70:~/bitcoinz-pkg$ ./zcash-cli z_gettotalbalance
{
"transparent": "12312.5001",
"private": "0.00",
"total": "12312.5001"
}
z-nomp/libs/paymentProcessor.js starting line 294
var amount = satoshisToCoins(zBalance - 10000);
// unshield no more than 100 ZEC at a time
if (amount > 20000.0)
amount = 20000.0;
This will change the maximum amount of coin to send to z_address from 100 to 20000 which will cover the 12500 block size and in the future any fees.
The reason is that its only shielding 100 coins at a time which is taking forever to shield because its 12500 coins a block.
thanks. i did and restart the service
var amount = satoshisToCoins(zBalance - 10000);
// unshield no more than 100 ZEC at a time
if (amount > 20000.0)
amount = 20000.0;
but the error messages persistant
Current Block Diff: 53842.814715686
Current Connect Peers: 26
Network Difficulty: 53217.92270317405
Network Hash Rate: 3.23 MH
Stratum Port(s): 3032
Pool Fee Percent: 1.5%
Block polling every: 500 ms
2017-10-07 19:18:00 [Switching] [Setup] (equihash) Setting proxy difficulties after pool start
2017-10-07 19:18:55 [Pool] [bitcoinz] (Thread 1) No new blocks for 55 seconds - updating transactions & rebroadcasting work
2017-10-07 19:19:20 [Payments] [bitcoinz] Insufficient funds (0) to process payments (12312.5); possibly waiting for txs.
2017-10-07 19:19:20 [Payments] [bitcoinz] Finished interval - time spent: 10ms total, 2ms redis, 2ms daemon RPC
2017-10-07 19:30:43 [Payments] [bitcoinz] Shield balance 12312.5 opid-55f1dfa1-cbf5-48fb-ac22-fd6597b97686
2017-10-07 19:30:03 [Payments] [bitcoinz] Insufficient funds (0) to process payments (12312.5); possibly waiting for txs.