File tree Expand file tree Collapse file tree
include/bitcoin/database/tables/archives Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ();
Original file line number Diff line number Diff 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;
Original file line number Diff line number Diff 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 ();
Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments