Replace makeInt with make_int

This commit is contained in:
tecnovert
2020-10-31 22:08:30 +02:00
parent 4636d31ea9
commit 5d84d54e6f
33 changed files with 6838 additions and 29 deletions

View File

@@ -14,8 +14,9 @@ class Coins(IntEnum):
PART = 1
BTC = 2
LTC = 3
# DCR = 4
#DCR = 4
NMC = 5
XMR = 6
chainparams = {
@@ -156,5 +157,26 @@ chainparams = {
'min_amount': 1000,
'max_amount': 100000 * COIN,
}
},
Coins.XMR: {
'name': 'monero',
'ticker': 'XMR',
'client': 'xmr',
'mainnet': {
'rpcport': 18081,
'walletrpcport': 18082,
},
'testnet': {
'rpcport': 28081,
'walletrpcport': 28082,
},
'regtest': {
'rpcport': 18081,
'walletrpcport': 18082,
}
}
}
class CoinInterface:
pass