Bitcoind list all transactions from all accounts with listtransactions cli command

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.

Barney Chambers

Posted 2018-08-21T13:58:00.857

Reputation: 291

Does bitcoin-cli listtransactions "*" 9999999 do what you want?JBaczuk 2018-08-21T14:04:44.180

Yes, 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 answerBarney Chambers 2018-08-21T14:09:51.773

Answers

2

I would like to receive the transactions of all accounts on my daemon, including the default account.

$ bitcoin-cli listtransactions "*" 9999999

JBaczuk

Posted 2018-08-21T13:58:00.857

Reputation: 6 172