Post
Topic
Board Development & Technical Discussion
Re: Can listtransactions show sendmany txns?
by
pizzaman1337
on 05/04/2014, 11:00:26 UTC
Because the transaction was to addresses within my own wallet, bitcoind did not show them under listtransactions because it classified all of them as change transactions.

The specific code for this is in CWalletTx::GetAmounts in wallet.cpp, inside the for loop it calls pwallet->IsChange(txout). GetAmounts is called from ListTransactions in rpcwallet.cpp (just in case this info is helpful for anyone).