From 75b54cc27736ce954f5d4a0dc4e12c2687802f11 Mon Sep 17 00:00:00 2001 From: debris Date: Wed, 10 Feb 2016 12:43:26 +0100 Subject: [PATCH] updated BlockId and TransactionId description --- ethcore/src/views.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ethcore/src/views.rs b/ethcore/src/views.rs index 6d4371c8b..a49c06708 100644 --- a/ethcore/src/views.rs +++ b/ethcore/src/views.rs @@ -19,15 +19,15 @@ use util::*; use header::*; use transaction::*; -/// Uniquely identifies block in canon blockchain. +/// Uniquely identifies block. pub enum BlockId { /// Block's sha3. Hash(H256), - /// Block number. + /// Block number within canon blockchain. Number(BlockNumber) } -/// Uniquely identifies transaction in canon blockchain. +/// Uniquely identifies transaction. pub enum TransactionId { /// Transaction's sha3. Hash(H256),