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:
- How to get outgoing & incoming transactions?
- In listtransactions field address - is it receiver or sender?
- If I can't get outgoing transactions using listtransactions, why here is may be three categories like "move", "receive" and "send"?
Problem was in provided account. When I set it to "*" all transactions was received.
Wrong
listtransactions('my_account', 100)
Right
listtransactions('*', 100)