| 170 | } |
| 171 | |
| 172 | static inline int ctz(uint32_t i) { |
| 173 | if (i == 0) return 0; |
| 174 | int j = 0; |
| 175 | while (!(i & 1)) { |
| 176 | j++; |
| 177 | i >>= 1; |
| 178 | } |
| 179 | return j; |
| 180 | } |
| 181 | |
| 182 | BOOST_AUTO_TEST_CASE(merkle_test) |
| 183 | { |
no outgoing calls
no test coverage detected