| 58 | } |
| 59 | |
| 60 | RawOutput::RawOutput(SafeMemReader &reader) { |
| 61 | value = static_cast<int64_t>(reader.readNext<Value>()); |
| 62 | scriptLength = reader.readVariableLengthInteger(); |
| 63 | scriptBegin = reinterpret_cast<const unsigned char*>(reader.unsafePos()); |
| 64 | reader.advance(scriptLength); |
| 65 | } |
| 66 | |
| 67 | WitnessStackItem::WitnessStackItem(SafeMemReader &reader) { |
| 68 | length = reader.readVariableLengthInteger(); |
nothing calls this directly
no test coverage detected