diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-02-06 15:48:00 -0500 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-02-06 16:27:05 -0500 |
commit | 7bf8b7c25c944110dbe85ef9e4eebd858da34158 (patch) | |
tree | 943799640b2ceab894852cb1cd54158c582ec577 /src/main.h | |
parent | 0b9a05a2bc1c1c6a86cdd9f25d43ab7224fd8731 (diff) |
-bip16 option (default: 1) to support / not support BIP 16. And bumped default BIP16 switchover date from Feb 15 to Mar 1
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/main.h b/src/main.h index 825c81e485..38cdd81fcc 100644 --- a/src/main.h +++ b/src/main.h @@ -49,10 +49,7 @@ static const int fHaveUPnP = false; #endif -// Put "/P2SH/" in the coinbase so everybody can tell when -// a majority of miners support it -static const char* pszP2SH = "/P2SH/"; -static const CScript COINBASE_FLAGS = CScript() << std::vector<unsigned char>(pszP2SH, pszP2SH+strlen(pszP2SH)); +extern CScript COINBASE_FLAGS; |