feat(miniprotocols): Introduce tracing (#214)

This commit is contained in:
Santiago Carmuega 2022-12-20 18:31:43 +01:00 committed by GitHub
parent 6fa936a998
commit c51580d042
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 47 additions and 71 deletions

View file

@ -559,7 +559,7 @@ impl From<AnyUInt> for u64 {
AnyUInt::U8(x) => x as u64,
AnyUInt::U16(x) => x as u64,
AnyUInt::U32(x) => x as u64,
AnyUInt::U64(x) => x as u64,
AnyUInt::U64(x) => x,
}
}
}