mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
21 lines
350 B
C++
21 lines
350 B
C++
#ifndef LLARP_CONSENSUS_TABLE_HPP
|
|
#define LLARP_CONSENSUS_TABLE_HPP
|
|
|
|
#include <crypto/types.hpp>
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace consensus
|
|
{
|
|
/// consensus table
|
|
struct Table : public std::vector< RouterID >
|
|
{
|
|
ShortHash
|
|
CalculateHash() const;
|
|
};
|
|
} // namespace consensus
|
|
} // namespace llarp
|
|
|
|
#endif
|