summaryrefslogtreecommitdiff
path: root/database.cpp
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2023-02-15 17:24:20 -0500
committerJosh Ferrell <josh@vector35.com>2023-02-15 17:24:20 -0500
commit086435bd364505f7e05c8a83e48e8b5bec30c94d (patch)
tree9cbb582cea9a28aaf5bb61214a08968bd9d6dc6b /database.cpp
parent5251311429098718270521173399182024516326 (diff)
Remove legacy BNDB Merge Tool
Diffstat (limited to 'database.cpp')
-rw-r--r--database.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/database.cpp b/database.cpp
index 34a57630..887cdea7 100644
--- a/database.cpp
+++ b/database.cpp
@@ -300,7 +300,7 @@ vector<UndoEntry> Snapshot::GetUndoEntries(const std::function<bool(size_t, size
{
UndoEntry temp;
temp.timestamp = entries[i].timestamp;
- temp.hash = entries[i].hash;
+ temp.id = entries[i].id;
temp.user = new User(BNNewUserReference(entries[i].user));
size_t actionCount = entries[i].actionCount;
for (size_t actionIndex = 0; actionIndex < actionCount; actionIndex++)