From f42c6ad2b5dbed775a3685e20fd906a3ea43b580 Mon Sep 17 00:00:00 2001 From: z-bowen Date: Fri, 29 Jun 2018 12:04:36 +0200 Subject: [PATCH] Updating from master changed BigchainDB.process_post_response to a private method, so I had to align with that. --- bigchaindb/tendermint/lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigchaindb/tendermint/lib.py b/bigchaindb/tendermint/lib.py index ffff7667..f3cc6b08 100644 --- a/bigchaindb/tendermint/lib.py +++ b/bigchaindb/tendermint/lib.py @@ -106,7 +106,7 @@ class BigchainDB(object): response = self.post_transaction(transaction, mode) return self._process_post_response(response.json(), mode) - def process_post_response(self, response, mode): + def _process_post_response(self, response, mode): logger.debug(response) if response.get('error') is not None: return (500, 'Internal error')