From 77fe3bf88755fe9668b2b512f265c17dd9ce1a3d Mon Sep 17 00:00:00 2001 From: NikVolf Date: Tue, 18 Oct 2016 10:41:41 +0300 Subject: [PATCH] grammar fix --- verification/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/verification/src/lib.rs b/verification/src/lib.rs index b60cfb9c..df719ebc 100644 --- a/verification/src/lib.rs +++ b/verification/src/lib.rs @@ -23,9 +23,9 @@ pub enum Error { Timestamp, /// First transaction is not a coinbase transaction Coinbase, - /// One of the transactions is invalid - Transaction(TransactionError, H256), - /// nBits does not match difficulty rules + /// One of the transactions is invalid (corresponding index and specific transaction error) + Transaction(usize, TransactionError), + /// nBits do not match difficulty rules Difficulty }