You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/consensus/table.hpp

18 lines
291 B
C++

#pragma once
#include <llarp/crypto/types.hpp>
#include <vector>
namespace llarp
{
namespace consensus
{
/// consensus table
struct Table : public std::vector<RouterID>
{
ShortHash
CalculateHash() const;
};
} // namespace consensus
} // namespace llarp