Skip to content

Commit ba81e60

Browse files
committed
remove dead code, delint.
1 parent 06d9780 commit ba81e60

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

include/bitcoin/database/tables/archives/input.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ struct input
102102
inline link count() const NOEXCEPT
103103
{
104104
using namespace system;
105-
static constexpr auto sequence_point_size = sizeof(uint32_t) +
105+
constexpr auto sequence_point_size = sizeof(uint32_t) +
106106
chain::point::serialized_size();
107107

108108
const auto& ins = *tx_.inputs_ptr();

include/bitcoin/database/tables/archives/ins.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ struct ins
109109
inline bool to_data(flipper& sink) const NOEXCEPT
110110
{
111111
using namespace system;
112-
static constexpr auto sequence_point_size = sizeof(uint32_t) +
112+
constexpr auto sequence_point_size = sizeof(uint32_t) +
113113
chain::point::serialized_size();
114114

115115
auto in_fk = input_fk;

include/bitcoin/database/tables/archives/output.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ struct output
152152
{
153153
using namespace system;
154154
static_assert(tx::size <= sizeof(uint64_t));
155-
static constexpr auto value_parent_difference = sizeof(uint64_t) -
155+
constexpr auto value_parent_difference = sizeof(uint64_t) -
156156
tx::size;
157157

158158
const auto& outs = *tx_.outputs_ptr();

include/bitcoin/database/tables/archives/outs.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ struct outs
106106
{
107107
using namespace system;
108108
static_assert(tx::size <= sizeof(uint64_t));
109-
static constexpr auto value_parent_difference = sizeof(uint64_t) -
109+
constexpr auto value_parent_difference = sizeof(uint64_t) -
110110
tx::size;
111111

112112
auto out_fk = output_fk;

0 commit comments

Comments
 (0)