Renaming file "final" to "final_vote".

This commit is contained in:
Colin LeMahieu 2024-10-10 14:37:08 +02:00
commit d54258102c
No known key found for this signature in database
GPG key ID: 43708520C8DFB938
7 changed files with 7 additions and 7 deletions

View file

@ -14,7 +14,7 @@
#include <nano/store/block.hpp> #include <nano/store/block.hpp>
#include <nano/store/component.hpp> #include <nano/store/component.hpp>
#include <nano/store/confirmation_height.hpp> #include <nano/store/confirmation_height.hpp>
#include <nano/store/final.hpp> #include <nano/store/final_vote.hpp>
#include <nano/store/online_weight.hpp> #include <nano/store/online_weight.hpp>
#include <nano/store/peer.hpp> #include <nano/store/peer.hpp>
#include <nano/store/pending.hpp> #include <nano/store/pending.hpp>
@ -1523,4 +1523,4 @@ nano::container_info nano::ledger::container_info () const
info.put ("bootstrap_weights", bootstrap_weights); info.put ("bootstrap_weights", bootstrap_weights);
info.add ("rep_weights", cache.rep_weights.container_info ()); info.add ("rep_weights", cache.rep_weights.container_info ());
return info; return info;
} }

View file

@ -9,7 +9,7 @@ add_library(
db_val_impl.hpp db_val_impl.hpp
iterator.hpp iterator.hpp
iterator_impl.hpp iterator_impl.hpp
final.hpp final_vote.hpp
lmdb/account.hpp lmdb/account.hpp
lmdb/block.hpp lmdb/block.hpp
lmdb/confirmation_height.hpp lmdb/confirmation_height.hpp
@ -59,7 +59,7 @@ add_library(
db_val.cpp db_val.cpp
iterator.cpp iterator.cpp
iterator_impl.cpp iterator_impl.cpp
final.cpp final_vote.cpp
lmdb/account.cpp lmdb/account.cpp
lmdb/block.cpp lmdb/block.cpp
lmdb/confirmation_height.cpp lmdb/confirmation_height.cpp

View file

@ -1 +0,0 @@
#include <nano/store/final.hpp>

View file

@ -0,0 +1 @@
#include <nano/store/final_vote.hpp>

View file

@ -1,6 +1,6 @@
#pragma once #pragma once
#include <nano/store/final.hpp> #include <nano/store/final_vote.hpp>
#include <lmdb/libraries/liblmdb/lmdb.h> #include <lmdb/libraries/liblmdb/lmdb.h>

View file

@ -1,6 +1,6 @@
#pragma once #pragma once
#include <nano/store/final.hpp> #include <nano/store/final_vote.hpp>
namespace nano::store::rocksdb namespace nano::store::rocksdb
{ {