From 9ebbb252bd3be5e0b14209b3bd44120a921686d8 Mon Sep 17 00:00:00 2001 From: NikVolf Date: Wed, 14 Dec 2016 13:25:24 +0100 Subject: [PATCH] trailing comma --- verification/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verification/src/error.rs b/verification/src/error.rs index 50e7e7c5..8a28bec9 100644 --- a/verification/src/error.rs +++ b/verification/src/error.rs @@ -41,7 +41,7 @@ pub enum Error { /// Sum of the transaction fees in block exceeds u64::max TransactionFeesOverflow, /// Sum of all referenced outputs in block transactions resulted in the overflow - ReferencedInputsSumOverflow + ReferencedInputsSumOverflow, } #[derive(Debug, PartialEq)]