| 76 | {8, 254702874}, {0, 455592851}}; |
| 77 | |
| 78 | static CBlockIndex CreateBlockIndex(int nHeight, CBlockIndex* active_chain_tip) EXCLUSIVE_LOCKS_REQUIRED(cs_main) |
| 79 | { |
| 80 | CBlockIndex index; |
| 81 | index.nHeight = nHeight; |
| 82 | index.pprev = active_chain_tip; |
| 83 | return index; |
| 84 | } |
| 85 | |
| 86 | // Test suite for ancestor feerate transaction selection. |
| 87 | // Implemented as an additional function, rather than a separate test case, |
no outgoing calls
no test coverage detected