Does listsinceblock list all transactions, or only transactions my wallet is interested in?

1

Wondering if I call listsinceblock "", will I get all transactions that ever occurred on the blockchain regardless of whether my wallet was party to it, or will it only be a list of transactions relevant to my wallet (things I've sent/received/have a private key for at least one side of) ?

Caius Jard

Posted 2018-03-16T06:40:19.593

Reputation: 155

1

Possible duplicate of How can I list my mined coins using RPC? And spend them?

pebwindkraft 2018-03-16T12:08:28.570

... from all accounts within your own wallet, see here https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list: "listtransactions" Returns up to [count] most recent transactions skipping the first [from] transactions for account [account]. If [account] not provided it'll return recent transactions from all accounts.

pebwindkraft 2018-03-16T12:12:52.077

Can you please clarify why you posted the help file text for listtransactions when I asked about listsinceblock ?Caius Jard 2018-03-17T06:42:07.030

1

Oops, yup, I see, I have mixed things up. The previous line on the same page refers to listsinceblock. Another link would be here: https://bitcoin.stackexchange.com/questions/25103/listsinceblock-parameter-target-confirmations, and also here: https://bitcoin.stackexchange.com/questions/32748/monitor-non-wallet-bitcoin-addresses-for-new-transactions/32755#32755. in general: if you set “txindex=1” in bitcoin.conf, then also foreign (non wallet addresses) can be seen.

pebwindkraft 2018-03-17T07:18:09.790

No answers