Reputation: 383
I have configured bitcoin core daemon. Using JSON-RPC I want to build web wallet. This why I need list of all incoming/outgoing transactions.
listtransactions returns only incoming transactions.
Questions:
Upvotes: 0
Views: 3416
Reputation: 21
For getting listtransactions of bitcoind server command is bitcoin-cli listtransactions (This command will return last 10 transactions) bitcoin-cli listtransactions "*" 100 0 (This command will return last 100 transactions here 0 to 100 transactions)
Upvotes: 0
Reputation: 383
Problem was in provided account. When I set it to "*" all transactions was received.
Wrong
listtransactions('my_account', 100)
Right
listtransactions('*', 100)
Upvotes: 0