From a7fb3bcd816a5ff3f376a041e1584b5d26382983 Mon Sep 17 00:00:00 2001 From: Will O'Beirne Date: Tue, 5 Feb 2019 15:16:39 -0500 Subject: [PATCH] Remove print --- backend/grant/proposal/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/grant/proposal/models.py b/backend/grant/proposal/models.py index 49e8e8da..7a348e06 100644 --- a/backend/grant/proposal/models.py +++ b/backend/grant/proposal/models.py @@ -214,7 +214,6 @@ class Proposal(db.Model): # Check with node that the address is kosher res = blockchain_get('/validate/address', {'address': self.payout_address}) - print(res) if not res['valid']: raise ValidationException("Payout address is not a valid Zcash address")