I'm trying to get a list of all transactions using the 'from' keyword, regardless of what account they belong to
from the command bitcoind help I can see that listtransaction is specified as such:
listtransactions [account] [count=10] [from=0]
If I specify no arguments I get all transactions regardless of the account.
How do I use the 'from' parameter without the 'account' parameter?
ie I want to do something like this
bitcoind listtransactions from=X
which should show me a list of all the transactions after transaction number X regardless of the account they're in.
as an example of what I've tried but has not given what I want:
bitcoind listtransactions "" 9999999999999 32
only lists from transaction 32 onward for account "", I want any account
bitcoind listtransactions * 9999999999 32
* is not valid
bitcoind listtransactions --from=32
--from is not valid, returns an empty array
bitcoind listtransactions from=32
returns an empty array, presumably treats the first keyword as account