This commit is contained in:
debris
2016-03-22 16:07:42 +01:00
parent f2a0e24491
commit 0cdac6de3c
5 changed files with 58 additions and 10 deletions

View File

@@ -42,3 +42,11 @@ pub enum TransactionId {
/// Querying by block position is always faster.
Location(BlockId, usize)
}
/// Uniquely identifies Uncle.
pub struct UncleId (
/// Block id.
pub BlockId,
/// Position in block.
pub usize
);