Merge pull request #24 from kaipila/master

Added support for new bitcoind v0.10.0 JSON-RPC calls
This commit is contained in:
Sean Lavine 2015-02-04 10:58:41 -08:00
commit b9a3043de6

View File

@ -9,6 +9,8 @@ module.exports = {
dumpPrivKey: 'dumpprivkey',
dumpWallet: 'dumpwallet', // bitcoind v0.9.0+
encryptWallet: 'encryptwallet',
estimateFee: 'estimatefee', // bitcoind v0.10.0x
estimatePriority: 'estimatepriority', // bitcoind v0.10.0+
getAccount: 'getaccount',
getAccountAddress: 'getaccountaddress',
getAddedNodeInfo: 'getaddednodeinfo', // bitcoind v0.8.0+
@ -20,6 +22,7 @@ module.exports = {
getBlockCount: 'getblockcount',
getBlockHash: 'getblockhash',
getBlockTemplate: 'getblocktemplate', // bitcoind v0.7.0+
getChainTips: 'getchaintips', // bitcoind v0.10.0+
getConnectionCount: 'getconnectioncount',
getDifficulty: 'getdifficulty',
getGenerate: 'getgenerate',
@ -44,6 +47,7 @@ module.exports = {
getWalletInfo: 'getwalletinfo', // bitcoind v0.9.2+
getWork: 'getwork',
help: 'help',
importAddress: 'importaddress', // bitcoind v0.10.0+
importPrivKey: 'importprivkey',
keypoolRefill: 'keypoolrefill',
keyPoolRefill: 'keypoolrefill',