From f1d2e217ae6e24a84edfa98ca3471a8a836ecaa7 Mon Sep 17 00:00:00 2001 From: CryptoManiac Date: Sun, 30 Aug 2015 20:43:46 +0300 Subject: [PATCH] Copy&paste typo fix --- Novacoin/CBlock.cs | 2 +- Novacoin/CTransaction.cs | 2 +- Novacoin/CTxIn.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Novacoin/CBlock.cs b/Novacoin/CBlock.cs index 3008db8..6ff2da3 100644 --- a/Novacoin/CBlock.cs +++ b/Novacoin/CBlock.cs @@ -99,7 +99,7 @@ namespace Novacoin } catch (Exception e) { - throw new BlockConstructorException("Deserealization failed", e); + throw new BlockConstructorException("Deserialization failed", e); } } diff --git a/Novacoin/CTransaction.cs b/Novacoin/CTransaction.cs index e9a1445..ab1a5ef 100644 --- a/Novacoin/CTransaction.cs +++ b/Novacoin/CTransaction.cs @@ -244,7 +244,7 @@ namespace Novacoin } catch (Exception e) { - throw new TransactionConstructorException("Deserealization failed", e); + throw new TransactionConstructorException("Deserialization failed", e); } } diff --git a/Novacoin/CTxIn.cs b/Novacoin/CTxIn.cs index cd205ab..44c21ad 100644 --- a/Novacoin/CTxIn.cs +++ b/Novacoin/CTxIn.cs @@ -107,7 +107,7 @@ namespace Novacoin } catch (Exception e) { - throw new TxInConstructorException("Deserealization failed.", e); + throw new TxInConstructorException("Desirealization failed.", e); } } -- 1.7.1