From e806064a7a1b6e6bbe9432918bd338f1a7d2a8ad Mon Sep 17 00:00:00 2001 From: ahmedbodi Date: Thu, 26 Dec 2013 04:25:54 +0100 Subject: [PATCH] Updated Transaction Messaging --- lib/coinbasetx.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/coinbasetx.py b/lib/coinbasetx.py index f1fa955..c999ebc 100644 --- a/lib/coinbasetx.py +++ b/lib/coinbasetx.py @@ -36,8 +36,8 @@ if settings.COINDAEMON_Reward == 'POW': tx_out.nValue = value tx_out.scriptPubKey = coinbaser.get_script_pubkey() - if settings.COINDAEMON_SHA256_TX == 'yes': - self.strTxComment = "" + if settings.COINDAEMON_TX_MSG == 'yes': + self.strTxComment = settings.Tx_Message self.vin.append(tx_in) self.vout.append(tx_out) @@ -84,8 +84,8 @@ elif settings.COINDAEMON_Reward == 'POS': tx_out.scriptPubKey = coinbaser.get_script_pubkey() self.nTime = ntime - if settings.COINDAEMON_SHA256_TX == 'yes': - self.strTxComment = "" + if settings.COINDAEMON_TX_MSG == 'yes': + self.strTxComment = settings.Tx_Message self.vin.append(tx_in) self.vout.append(tx_out)