Skip to content

Commit

Permalink
Fix conflicting bitcoin counterparty conflict merge
Browse files Browse the repository at this point in the history
Bitcoin reduced the tx return data bytes by half effectively cutting off
counterparty compatibility with 0.9.x see:
http://www.coindesk.com/developers-battle-bitcoin-block-chain/

This is to revert the bitcoin change so that we may one day support
counterparty, blockchain services and smart contracts
  • Loading branch information
sidhujag committed Aug 7, 2014
1 parent 83da9dd commit cf3e03b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class CKeyStore;
class CTransaction;

static const unsigned int MAX_SCRIPT_ELEMENT_SIZE = 520; // bytes
static const unsigned int MAX_OP_RETURN_RELAY = 40; // bytes
static const unsigned int MAX_OP_RETURN_RELAY = 80; // bytes

/** Signature hash types/flags */
enum
Expand Down

0 comments on commit cf3e03b

Please sign in to comment.