| 162 | } |
| 163 | |
| 164 | [[nodiscard]] inline opcodetype ConsumeOpcodeType(FuzzedDataProvider& fuzzed_data_provider) noexcept |
| 165 | { |
| 166 | return static_cast<opcodetype>(fuzzed_data_provider.ConsumeIntegralInRange<uint32_t>(0, MAX_OPCODE)); |
| 167 | } |
| 168 | |
| 169 | [[nodiscard]] CAmount ConsumeMoney(FuzzedDataProvider& fuzzed_data_provider, const std::optional<CAmount>& max = std::nullopt) noexcept; |
| 170 |
no outgoing calls
no test coverage detected