Write a 256-bit hash value to the 'dst' frame, advancing the cursor 256 cells. * * Precondition: '*dst' is a valid write frame for 256 more cells; * NULL != h; */
| 20 | * NULL != h; |
| 21 | */ |
| 22 | static void writeHash(frameItem* dst, const sha256_midstate* h) { |
| 23 | write32s(dst, h->s, 8); |
| 24 | } |
| 25 | |
| 26 | /* Write an outpoint value to the 'dst' frame, advancing the cursor 288 cells. |
| 27 | * |
no test coverage detected