I'm trying to run kmd-nomp for gpu kmd mining,
but i receive the following error:
error: expected property "1" of type satoshi got Number NaN
komodod is fully synced
bitcoind is still syncing
Any one has faced the same issue?
Thx
in file "kmd-nomp/node_modules/stratum-pool/lib/blockTemplate.js"
replace line 26 by
var blockReward = (this.rpcData.miner) * 100000000;
this to remove the founders parameter from zcash
thank you for your answer,
but line 26 is already
var blockReward = (this.rpcData.miner) * 100000000;
i've tried also
var blockReward = bignum(this.rpcData.miner).mul(100000000).toNumber();
as stated here :
https://github.com/bobfeldbauer/node-stratum-pool-1/commit/8c3b240ecb7d405d60847457e80ab36d72a93104but kmd-nomp has always the same error
Error: Expected property "1" of type Satoshi, got Number NaN
maybe i have to wait for bitcoind to download the full blockchain?
any other suggestions ,
thank you again