| 154 | } |
| 155 | |
| 156 | void GetBlockHeader(CBlockHeader &header) { |
| 157 | header.SetVersion(nVersion); |
| 158 | header.SetPrevBlockHash(prevBlockHash); |
| 159 | header.SetMerkleRootHash(merkleRootHash); |
| 160 | header.SetTime(nTime); |
| 161 | header.SetNonce(nNonce); |
| 162 | header.SetHeight(height); |
| 163 | header.SetFuel(nFuelFee); |
| 164 | header.SetFuelRate(nFuelRate); |
| 165 | header.SetSignature(vSignature); |
| 166 | } |
| 167 | |
| 168 | uint256 BuildMerkleTree() const; |
| 169 |
no test coverage detected