feat(miniprotocols): Introduce tracing (#214)

This commit is contained in:
Santiago Carmuega 2022-12-20 18:31:43 +01:00 committed by GitHub
parent dadb39de43
commit 8cfc6129b2
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,
}
}
}