diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2023-04-19 16:28:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 16:28:56 +0200 |
commit | d81e9245c60350abc1af47b466a38dc5296417d9 (patch) | |
tree | 5ee597d313de2c674ee3765a7b6aed53195ae2ad /src | |
parent | 1a5fba25987c8f44a0fdcf8219d9243a3d04dda2 (diff) | |
parent | dbb350aed2e050662ebd8d746714e5d459d0587e (diff) | |
download | ledger-d81e9245c60350abc1af47b466a38dc5296417d9.tar.gz ledger-d81e9245c60350abc1af47b466a38dc5296417d9.tar.bz2 ledger-d81e9245c60350abc1af47b466a38dc5296417d9.zip |
Merge pull request #2245 from taviso/master
Fix bucket transactions with reg --related
Diffstat (limited to 'src')
-rw-r--r-- | src/item.h | 1 | ||||
-rw-r--r-- | src/xact.cc | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -86,6 +86,7 @@ public: #define ITEM_GENERATED 0x01 // posting was not found in a journal #define ITEM_TEMP 0x02 // posting is a managed temporary #define ITEM_NOTE_ON_NEXT_LINE 0x04 // did we see a note on the next line? +#define ITEM_INFERRED 0x08 // bucketed item enum state_t { UNCLEARED = 0, CLEARED, PENDING }; diff --git a/src/xact.cc b/src/xact.cc index 961ff010..55e816cb 100644 --- a/src/xact.cc +++ b/src/xact.cc @@ -210,7 +210,7 @@ bool xact_base_t::finalize() // been set. if (journal && journal->bucket && posts.size() == 1 && ! balance.is_null()) { - null_post = new post_t(journal->bucket, ITEM_GENERATED); + null_post = new post_t(journal->bucket, ITEM_INFERRED); null_post->_state = (*posts.begin())->_state; add_post(null_post); } |