diff options
| author | Jeff Garzik <[email protected]> | 2014-02-26 12:58:08 -0500 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2014-02-26 12:58:08 -0500 |
| commit | 8175c790eb12f0b0ca3197895a6d1d479b340b67 (patch) | |
| tree | 50a6bf0be4d4070df1f1b40da3e7e68bf32d3d4c /src/script.h | |
| parent | Merge pull request #3718 from jgarzik/pubkey-size (diff) | |
| download | discoin-8175c790eb12f0b0ca3197895a6d1d479b340b67.tar.xz discoin-8175c790eb12f0b0ca3197895a6d1d479b340b67.zip | |
script: reduce OP_RETURN standard relay bytes to 40
Per mailing list discussion.
Diffstat (limited to 'src/script.h')
| -rw-r--r-- | src/script.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/script.h b/src/script.h index 335ddfb1b..657ac0b38 100644 --- a/src/script.h +++ b/src/script.h @@ -23,6 +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 /** Signature hash types/flags */ enum |