Change OutputId::get() to return u64

This commit is contained in:
Ivan Molodetskikh
2024-08-31 10:27:05 +03:00
parent 446a9f1e06
commit 138c2a3bfd
+2 -2
View File
@@ -44,8 +44,8 @@ impl OutputId {
OutputId(OUTPUT_ID_COUNTER.next())
}
pub fn get(self) -> u32 {
self.0
pub fn get(self) -> u64 {
u64::from(self.0)
}
}