| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |\ \ \
| |/ /
|/| /
| |/ |
Bugfix: Require OrderedTxItems to provide properly scoped accounting entry list
|
| | |
| |
| |
| |
| |
| | |
OrderedTxItems returns a multimap of pointers, but needs a place to store the actual CAccountingEntries it points to.
It had been using a stack item, which was clobbered as soon as it returned, resulting in undefined behaviour.
This fixes at least bug #1768.
|
| |\ \
| | |
| | | |
Listunspent txout address filtering and listaddressgroupings
|
| | | |
| | |
| | |
| | |
| | | |
This is cleanup for the listaddressgroupings code. Also add some
real help text.
|
| | |/
| |
| |
| | |
Signed-off-by: Gregory Maxwell <[email protected]>
|
| | | |
|
| |/
|
|
|
| |
- Show address receiving the generation, and include it in the correct "account"
- Multiple entries in listtransactions output if the coinbase has multiple outputs to us
|
| |
|
|
|
|
|
|
|
| |
Logic:
- If sending a transaction, assign its timestamp to the current time.
- If receiving a transaction outside a block, assign its timestamp to the current time.
- If receiving a block with a future timestamp, assign all its (not already known) transactions' timestamps to the current time.
- If receiving a block with a past timestamp, before the most recent known transaction (that we care about), assign all its (not already known) transactions' timestamps to the same timestamp as that most-recent-known transaction.
- If receiving a block with a past timestamp, but after the most recent known transaction, assign all its (not already known) transactions' timestamps to the block time.
|
| |
|
|
| |
transaction Object outputs
|
| |
|
|
|
| |
For backward compatibility, new accounting data is stored after a \0 in the comment string.
This way, old versions and third-party software should load and store them, but all actual use (listtransactions, for example) ignores it.
|
| |
|
| |
One added space + one removed space.
|
| | |
|
| |
|