We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f02827a commit 78fef29Copy full SHA for 78fef29
examples/publish-text.py
@@ -181,13 +181,7 @@ def make_scripts(lines, n):
181
logging.info('Total cost: %s BTC' % str_money_value(sum(amount for addr, amount in payments.items())))
182
183
# Create unsigned tx for SignatureHash
184
-
185
-# By paying this rather than an OP_RETURN the tx shows up on bc.i, convenient
186
-# for determining propagation; inception for the lulz.
187
-#
188
-# FIXME: these 600 satoshi's aren't taken into account above...
189
-vout = [CTxOut(600, CScript().to_p2sh_scriptPubKey().to_p2sh_scriptPubKey())]
190
-#vout = [CTxOut(0, CScript([OP_RETURN]))]
+vout = [CTxOut(0, CScript([OP_RETURN]))]
191
192
unsigned_vin = []
193
for scriptSig, redeemScript in scripts:
0 commit comments