| 1409 | } |
| 1410 | |
| 1411 | uint256 GetTarget(const CBlockIndex& blockindex, const uint256 pow_limit) |
| 1412 | { |
| 1413 | arith_uint256 target{*CHECK_NONFATAL(DeriveTarget(blockindex.nBits, pow_limit))}; |
| 1414 | return ArithToUint256(target); |
| 1415 | } |
| 1416 | |
| 1417 | std::vector<RPCResult> ElideGroup(std::vector<RPCResult> fields, std::string summary) |
| 1418 | { |
no test coverage detected