| 83 | }; |
| 84 | |
| 85 | static CBlockIndex CreateBlockIndex(int nHeight) |
| 86 | { |
| 87 | CBlockIndex index; |
| 88 | index.nHeight = nHeight; |
| 89 | index.pprev = chainActive.Tip(); |
| 90 | return index; |
| 91 | } |
| 92 | |
| 93 | static bool TestSequenceLocks(const CTransaction &tx, int flags) |
| 94 | { |
no test coverage detected