Skip to content

Commit

Permalink
Fix bitzeny params and header (kyuupichan#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
wakiyamap authored and Neil committed Apr 18, 2018
1 parent 7ef6e78 commit 3749900
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions lib/coins.py
Original file line number Diff line number Diff line change
Expand Up @@ -1292,12 +1292,18 @@ class Bitzeny(Coin):
ESTIMATE_FEE = 0.001
RELAY_FEE = 0.001
DAEMON = daemon.FakeEstimateFeeDaemon
TX_COUNT = 1000
TX_COUNT_HEIGHT = 10000
TX_COUNT = 1408733
TX_COUNT_HEIGHT = 1015115
TX_PER_BLOCK = 1
RPC_PORT = 9252
REORG_LIMIT = 1000

@classmethod
def header_hash(cls, header):
'''Given a header return the hash.'''
import zny_yescrypt
return zny_yescrypt.getPoWHash(header)


class CanadaeCoin(AuxPowMixin, Coin):
NAME = "CanadaeCoin"
Expand Down

0 comments on commit 3749900

Please sign in to comment.