From f655fefe52fc69e6d4165213faad35c0df48c4a0 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 11 Mar 2019 12:30:32 -0400 Subject: [PATCH] typing fix --- torba/client/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torba/client/wallet.py b/torba/client/wallet.py index e3bd604bf..0496a99ed 100644 --- a/torba/client/wallet.py +++ b/torba/client/wallet.py @@ -60,7 +60,7 @@ class Wallet: return account @property - def hash(self) -> str: + def hash(self) -> bytes: h = sha256() for account in sorted(self.accounts, key=attrgetter('id')): h.update(account.hash)