From e72d43d0bec3fb93307b1e11f40171e3621b86ee Mon Sep 17 00:00:00 2001 From: Jude Nelson Date: Thu, 6 Jul 2017 19:36:27 -0400 Subject: [PATCH] force string --- blockstack_client/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blockstack_client/storage.py b/blockstack_client/storage.py index 951f36bef..513e74538 100644 --- a/blockstack_client/storage.py +++ b/blockstack_client/storage.py @@ -73,7 +73,7 @@ def get_zonefile_data_hash(data_txt): Generate a hash over a user's zonefile. Return the hex string. """ - return hex_hash160(data_txt) + return hex_hash160(str(data_txt)) def get_blockchain_compat_hash(data_txt):