Don't have method listtransactio

111 views Asked by At

bitcoin core version

Trying to use listtransactions

I don't understand why my bitcoin core don't have this method. How add this method to core?

I installed the node using this guide: https://baloian.medium.com/how-to-setup-and-run-a-bitcoin-full-node-on-ubuntu-a106fb86dbb3

1

There are 1 answers

0
ethicnology On
  1. In your screenshot the bitcoin-core version is equal to 23.99.0-something. You should build or download binaries of the latest release which is 23.0.

  2. In order to use listtransactions you need:

  • bitcoin core daemon running bitcoind --daemon
  • created/loaded a wallet bitcoin-cli createwallet "sometag"
  • then you can bitcoin-cli listtransactions which will return an empty array in my case because the wallet is new

official build notes
download bitcoin-core
running a full node
personal gist to download and install bitcoin core on linux x86_64