1
1
If you run bitcoin-cli listtransactions "" 9999999 you receive a list of transactions from your default bitcoind account. I would like to receive the transactions of all accounts on my daemon, including the default account.
1
1
If you run bitcoin-cli listtransactions "" 9999999 you receive a list of transactions from your default bitcoind account. I would like to receive the transactions of all accounts on my daemon, including the default account.
2
I would like to receive the transactions of all accounts on my daemon, including the default account.
$ bitcoin-cli listtransactions "*" 9999999
Does
bitcoin-cli listtransactions "*" 9999999do what you want? – JBaczuk – 2018-08-21T14:04:44.180Yes, thanks for that. I was having issues with that line because I didn't realise the * requires quotes. Please post and I will accept the answer – Barney Chambers – 2018-08-21T14:09:51.773