diff options
author | fanquake <fanquake@gmail.com> | 2023-07-27 12:11:43 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-08-03 17:52:24 +0100 |
commit | 7de23cceb8ac13fcc709453ef0fa14fb93c460b0 (patch) | |
tree | 0effd16079d2068030492710253fad3961196803 /src/test/util | |
parent | 0a1029aa2946787bfe91a84de882c2dd0de076e9 (diff) |
refactor: fix unterminated LogPrintf()s
Diffstat (limited to 'src/test/util')
-rw-r--r-- | src/test/util/chainstate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/util/chainstate.h b/src/test/util/chainstate.h index 9ff2c08807..7f55916870 100644 --- a/src/test/util/chainstate.h +++ b/src/test/util/chainstate.h @@ -50,7 +50,7 @@ CreateAndActivateUTXOSnapshot( UniValue result = CreateUTXOSnapshot( node, node.chainman->ActiveChainstate(), auto_outfile, snapshot_path, snapshot_path); LogPrintf( - "Wrote UTXO snapshot to %s: %s", fs::PathToString(snapshot_path.make_preferred()), result.write()); + "Wrote UTXO snapshot to %s: %s\n", fs::PathToString(snapshot_path.make_preferred()), result.write()); // Read the written snapshot in and then activate it. // |