Extracting block_w_sideband to its own file
This commit is contained in:
parent
d831937f12
commit
057cacd6fd
3 changed files with 21 additions and 6 deletions
|
|
@ -2,6 +2,7 @@ add_library(
|
||||||
nano_store
|
nano_store
|
||||||
account.hpp
|
account.hpp
|
||||||
block.hpp
|
block.hpp
|
||||||
|
block_w_sideband.hpp
|
||||||
component.hpp
|
component.hpp
|
||||||
confirmation_height.hpp
|
confirmation_height.hpp
|
||||||
db_val.hpp
|
db_val.hpp
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
#include <nano/lib/block_sideband.hpp>
|
#include <nano/lib/block_sideband.hpp>
|
||||||
#include <nano/lib/numbers.hpp>
|
#include <nano/lib/numbers.hpp>
|
||||||
|
#include <nano/store/block_w_sideband.hpp>
|
||||||
#include <nano/store/component.hpp>
|
#include <nano/store/component.hpp>
|
||||||
#include <nano/store/iterator.hpp>
|
#include <nano/store/iterator.hpp>
|
||||||
|
|
||||||
|
|
@ -15,12 +16,6 @@ class block_hash;
|
||||||
}
|
}
|
||||||
namespace nano::store
|
namespace nano::store
|
||||||
{
|
{
|
||||||
class block_w_sideband
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
std::shared_ptr<nano::block> block;
|
|
||||||
nano::block_sideband sideband;
|
|
||||||
};
|
|
||||||
/**
|
/**
|
||||||
* Manages block storage and iteration
|
* Manages block storage and iteration
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
19
nano/store/block_w_sideband.hpp
Normal file
19
nano/store/block_w_sideband.hpp
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <nano/lib/block_sideband.hpp>
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
|
namespace nano
|
||||||
|
{
|
||||||
|
class block;
|
||||||
|
}
|
||||||
|
namespace nano::store
|
||||||
|
{
|
||||||
|
class block_w_sideband
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
std::shared_ptr<nano::block> block;
|
||||||
|
nano::block_sideband sideband;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue