From a466cfbd6cd533db618aac6e8a2861fe7624b896 Mon Sep 17 00:00:00 2001 From: Greg McMullen Date: Tue, 23 Feb 2016 16:40:26 +0100 Subject: [PATCH] Bigchain -> BigchainDB in only one place and not other places. --- bigchaindb/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigchaindb/core.py b/bigchaindb/core.py index d2c7b4ad..9706253f 100644 --- a/bigchaindb/core.py +++ b/bigchaindb/core.py @@ -501,7 +501,7 @@ class Bigchain(object): if blocks_count: raise GenesisBlockAlreadyExistsError('Cannot create the Genesis block') - payload = {'message': 'Hello World from the Bigchain'} + payload = {'message': 'Hello World from the BigchainDB'} transaction = self.create_transaction(self.me, self.me, None, 'GENESIS', payload=payload) transaction_signed = self.sign_transaction(transaction, self.me_private)