Attention Z-NOMP pool ownersIf you are running VoteCoin pool based on Z-NOMP, your pool will not be able to mine new blocks until you patch it to support the latest overwinter transaction format.
The patch can be found here:
https://github.com/karel-3d/bitcoinjs-lib/pull/3/filesit applies to the following file:
./z-nomp/node_modules/bitcoinjs-lib-zcash/src/transaction.js
After you patch it, you need to make one more change.
Find file
./z-nomp/node_modules/stratum-pool/lib/transactions.js
In this file, find the following line:
var tx = new bitcoin.Transaction();
Add this line after:
If your pool supports multiple coins, you will need to call tx.setOverwinter() only for VoteCoin (and Zcash) coins. Since we do not run multiple coins, I didn't search for proper solution for multicoin setup. At least you have a starting point here. Hope it helps.
-Tom