Living a Simple Life is a Happy Life

有饭吃,自由自在,就非常开心

Bitcoind Conf Template

| Comments

bitcoin core 0.17版本开始废弃了不少RPC调用,另外RPC配置增加了test.rpcport参数,存一份模板:

1
2
3
4
5
6
7
8
9
rpcuser=xxxx
rpcpassword=xxxx
rpcallowip=127.0.0.1
rpcport=18332
test.rpcport=8332
rpcthreads=10
server=1
rest=1
walletnotify=/usr/bin/python3 /xxx.py

另外getaddressesbyaccount即将废弃,可以使用getaddressesbylabel代替

signrawtransaction即将废弃,实在要用的话只能在启动命令行中加deprecatedrpc指定。

1
bin/bitcoind --conf=/xxx/bitcoin.conf --datadir=/xxx/blockdata/mainnet --deprecatedrpc=signrawtransaction

Comments