We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cbor_event
1 parent 6a06f65 commit 6f5fcd3Copy full SHA for 6f5fcd3
rust/src/utils.rs
@@ -582,6 +582,8 @@ impl Deserialize for Int {
582
}
583
584
585
+/// TODO: this function can be removed in case `cbor_event` library ever gets a fix on their side
586
+/// See https://github.com/Emurgo/cardano-serialization-lib/pull/392
587
fn read_nint<R: BufRead + Seek>(raw: &mut Deserializer<R>) -> Result <i128, DeserializeError> {
588
let found = raw.cbor_type()?;
589
if found != cbor_event::Type::NegativeInteger {
0 commit comments