From ea29d9009d897496d65f1155687f120ec16bda71 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 28 Jul 2014 08:27:21 +0200 Subject: [PATCH] wallet.can_sign --- lib/wallet.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/wallet.py b/lib/wallet.py index 6216d783..d109f7d2 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -987,6 +987,8 @@ class Abstract_Wallet(object): age = tx_age return age > age_limit + def can_sign(self, tx): + pass class Imported_Wallet(Abstract_Wallet):