Skip to content

Latest commit

 

History

History
46 lines (27 loc) · 935 Bytes

File metadata and controls

46 lines (27 loc) · 935 Bytes

darkcoin_subsidy (python) v1.2

Python module for Darkcoin's subsidy function.

Currently to be used for:

  • p2pool-drk (SUBSIDY_FUNC)
  • darkcoind-ncurses (block_subsidy)

Install

Python 2.7 is required as well as a gcc with c++ bindings.

$ sudo python2 setup.py install

Or use pip:

$ pip install darkcoin_subsidy

pypi.python.org/pypi/darkcoin_subsidy

Usage

Import the module and call the function:

import darkcoin_subsidy as ds

nBits = 469894998
nHeight = 21288
print ds.GetBlockBaseValue(nBits, nHeight)

Testnet:

print ds.GetBlockBaseValue_testnet(nBits, nHeight)

Credits