grammar fix

This commit is contained in:
NikVolf 2016-10-18 10:41:41 +03:00
parent 8e2bcbc788
commit 77fe3bf887
1 changed files with 3 additions and 3 deletions

View File

@ -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
}