Found an issue in v0.17.1, which is related to listing the txs for wallet account. According to these release notes https://bitcoin.org/en/release/v0.17.1#listtransactions-label-support - I am able to specify the "-deprecatedrpc=accounts" option, in order to obtain the to/from txs for the certain account. However, I still see only incoming txs in a reply.
Here is my config:
deprecatedrpc=accounts
[test]
testnet=1
server=1
rpcport=8333
zmqpubhashtx=tcp://127.0.0.1:43332
zmqpubrawtx=tcp://127.0.0.1:43332
rpcuser=user
rpcpassword=123
txindex=1
Here is my test address: 2NEKqdWqcF649fkHW8osPUht42zY7gY3iQK And reply:
[
{
"result": [
{
"involvesWatchonly": true,
"account": "2NEKqdWqcF649fkHW8osPUht42zY7gY3iQK",
"address": "2NEKqdWqcF649fkHW8osPUht42zY7gY3iQK",
"category": "receive",
"amount": 126.59484532,
"label": "2NEKqdWqcF649fkHW8osPUht42zY7gY3iQK",
"vout": 1,
"confirmations": 24,
"blockhash": "0000000012df77807187ed6bd90b79cfcf0d4987eec27f435bf0727e8bd92df4",
"blockindex": 21,
"blocktime": 1553156910,
"txid": "8b213eb71c7987027ab51f86403666dcd420396d990236aaef843fc2c54e2e1a",
"walletconflicts": [],
"time": 1553163776,
"timereceived": 1553169937,
"bip125-replaceable": "no"
}
],
"error": null,
"id": null
}
]

