WinternitzAddress structure matching the Solidity contract
| 27 | |
| 28 | // WinternitzAddress structure matching the Solidity contract |
| 29 | struct WinternitzAddress { |
| 30 | array<uint8_t, 32> publicSeed; // bytes32 publicSeed |
| 31 | array<uint8_t, 32> publicKeyHash; // bytes32 publicKeyHash |
| 32 | }; |
| 33 | |
| 34 | // Common functions |
| 35 | inline string toHex(const vector<uint8_t> &data) { |
nothing calls this directly
no outgoing calls
no test coverage detected