-
Notifications
You must be signed in to change notification settings - Fork 442
Insufficient funds (0) to process payments (12312.5); possibly waiting for txs. #208
Comments
How many RAM and zec/zcl/btcz nodes running on your server do you have? |
only one BTCZ node, 512 RAM |
512mb is not enough for shielding process |
Yes, safe amount for shielding is 4 GB of RAM or more. Without this payment wont be prcoessed. |
You can try by adding swap space |
thanks guys.. i did all your recommendations..my VPS 1G RAM and 4G swap.. pool@btcz-pool:~/z-nomp$ ./zcash-cli z_gettotalbalance but.. allways show me.. this 2017-10-11 19:39:41 [Pool] [bitcoinz] (Thread 1) Block notification via RPC polling 2017-10-11 20:18:37 [Payments] [bitcoinz] Shielding operation success opid-05a24be1-4af7-48a4-83a8-e71114ee5de1 txid: 0eb48f4b29862fe123e78eedbf32597f76321cc17a4a6241ce6e6324a146b99d |
zcash-cli z_getoperationstatus shows what? |
pool@btcz-pool:~/z-nomp$ ./zcash-cli z_getoperationstatus |
I'm having the same error on Komodo. The wallet seems to be just short like the smallest ammout. Im sure it has to be what i am using on txs. Any ideas. I have a found about 75 blocks and it just now started. Its not a ram issue. I have 16 gigs and another 8 virtual. 2017-10-13 08:30:13 [Payments] [komodo] Insufficient funds (0.20565227) to process payments (0.20565233); possibly waiting for txs. Any clue what adjustments I need to make? |
i upgraded RAM and created swap in the vps
|
Hi, I have the same problem, I think that I need to wait confirmations, I post tomorrow again, sorry. |
Hi, now I saw this:
Also I don't understand very well payment process, I have this balance:
And, in pool_config/bitcoinz.json I have:
If I check transactions, I see:
..... I don't know why payments goes to I can change paymentProcessor.js to be more faster?
Thanks in advance!! |
var amount = satoshisToCoins(zBalance - 10000); change to var amount = satoshisToCoins(zBalance - 10000); |
jcreyesb, did this solve your problem? |
this should resolve the problem.. |
hi @neurans , @sennevb . I resolved problem, check
|
I had the same problems |
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"
}
i changed
z-nomp/libs/paymentProcessor.js starting line 294
Code:
var amount = satoshisToCoins(zBalance - 10000);
// unshield no more than 100 ZEC at a time
if (amount > 20000.0)
amount = 20000.0;
But not work the pasyment process
The text was updated successfully, but these errors were encountered: