I know I should change bitcoin file to zcash .
I have highlight the attributes I consider to be modifid, Can anyone tell me how to do it?
Any suggestion will be ok
P2P_PREFIX = ‘f9beb4d9’.decode(‘hex’)
P2P_PORT = 8333
ADDRESS_VERSION = 0
RPC_PORT = 8332
RPC_CHECK = defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
** (yield helper.check_genesis_block(bitcoind, ‘000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f’)) and**
** not (yield bitcoind.rpc_getinfo())[‘testnet’]**
** ))**
SUBSIDY_FUNC = lambda height: 50*100000000 >> (height + 1)//210000
POW_FUNC = data.hash256
BLOCK_PERIOD = 600 # s
SYMBOL = ‘BTC’
CONF_FILE_FUNC = lambda: os.path.join(os.path.join(os.environ[‘APPDATA’], ‘Bitcoin’) if platform.system() == ‘Windows’ else os.path.expanduser(‘~/Library/Application Support/Bitcoin/’) if platform.system() == ‘Darwin’ else os.path.expanduser(‘~/.bitcoin’), ‘bitcoin.conf’)
BLOCK_EXPLORER_URL_PREFIX = ‘https://blockchain.info/block/’
ADDRESS_EXPLORER_URL_PREFIX = ‘https://blockchain.info/address/’
TX_EXPLORER_URL_PREFIX = ‘https://blockchain.info/tx/’
SANE_TARGET_RANGE = (2256//232//1000000 - 1, 2256//232 - 1)
DUMB_SCRYPT_DIFF = 1
DUST_THRESHOLD = 0.001e8