From d54258102cca2f8876b636b5a49c3dbf3e9565d8 Mon Sep 17 00:00:00 2001 From: Colin LeMahieu Date: Thu, 10 Oct 2024 14:37:08 +0200 Subject: [PATCH] Renaming file "final" to "final_vote". --- nano/secure/ledger.cpp | 4 ++-- nano/store/CMakeLists.txt | 4 ++-- nano/store/final.cpp | 1 - nano/store/final_vote.cpp | 1 + nano/store/{final.hpp => final_vote.hpp} | 0 nano/store/lmdb/final_vote.hpp | 2 +- nano/store/rocksdb/final_vote.hpp | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) delete mode 100644 nano/store/final.cpp create mode 100644 nano/store/final_vote.cpp rename nano/store/{final.hpp => final_vote.hpp} (100%) diff --git a/nano/secure/ledger.cpp b/nano/secure/ledger.cpp index cba173a6..bc9514a8 100644 --- a/nano/secure/ledger.cpp +++ b/nano/secure/ledger.cpp @@ -14,7 +14,7 @@ #include #include #include -#include +#include #include #include #include @@ -1523,4 +1523,4 @@ nano::container_info nano::ledger::container_info () const info.put ("bootstrap_weights", bootstrap_weights); info.add ("rep_weights", cache.rep_weights.container_info ()); return info; -} \ No newline at end of file +} diff --git a/nano/store/CMakeLists.txt b/nano/store/CMakeLists.txt index c44d7fc0..e5e6a8c4 100644 --- a/nano/store/CMakeLists.txt +++ b/nano/store/CMakeLists.txt @@ -9,7 +9,7 @@ add_library( db_val_impl.hpp iterator.hpp iterator_impl.hpp - final.hpp + final_vote.hpp lmdb/account.hpp lmdb/block.hpp lmdb/confirmation_height.hpp @@ -59,7 +59,7 @@ add_library( db_val.cpp iterator.cpp iterator_impl.cpp - final.cpp + final_vote.cpp lmdb/account.cpp lmdb/block.cpp lmdb/confirmation_height.cpp diff --git a/nano/store/final.cpp b/nano/store/final.cpp deleted file mode 100644 index 69d469dc..00000000 --- a/nano/store/final.cpp +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/nano/store/final_vote.cpp b/nano/store/final_vote.cpp new file mode 100644 index 00000000..0b4565c1 --- /dev/null +++ b/nano/store/final_vote.cpp @@ -0,0 +1 @@ +#include diff --git a/nano/store/final.hpp b/nano/store/final_vote.hpp similarity index 100% rename from nano/store/final.hpp rename to nano/store/final_vote.hpp diff --git a/nano/store/lmdb/final_vote.hpp b/nano/store/lmdb/final_vote.hpp index 896ab5d6..9b72b085 100644 --- a/nano/store/lmdb/final_vote.hpp +++ b/nano/store/lmdb/final_vote.hpp @@ -1,6 +1,6 @@ #pragma once -#include +#include #include diff --git a/nano/store/rocksdb/final_vote.hpp b/nano/store/rocksdb/final_vote.hpp index 0ffa549f..a24093a5 100644 --- a/nano/store/rocksdb/final_vote.hpp +++ b/nano/store/rocksdb/final_vote.hpp @@ -1,6 +1,6 @@ #pragma once -#include +#include namespace nano::store::rocksdb {