From 3d4ed28c8bc6decd8b0481a2e96fe5e4401151ad Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Wed, 15 Jan 2020 15:41:57 +0100 Subject: [PATCH] Fixes wrong log messase --- apps/cli/blob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cli/blob.py b/apps/cli/blob.py index d5c7c14..cd3ed23 100644 --- a/apps/cli/blob.py +++ b/apps/cli/blob.py @@ -4,6 +4,6 @@ import re class Blob: def __init__(self, data): if type(data) is not str or re.search(r"^[0-9A-Fa-f]+$", data) is None: - raise ValueError("Non-Hex character found in txid.") + raise ValueError("Non-Hex character found in transaction.") self.data = data