diff options
| author | Pieter Wuille <[email protected]> | 2014-06-07 13:53:27 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-06-21 22:59:03 +0200 |
| commit | 4949004d68dc08382df2c34ae519c1b1cfd60f1a (patch) | |
| tree | e3c4b2d6fa162af1cfbe44f6deb39278c12c5672 /src/chainparams.cpp | |
| parent | Merge pull request #4100 (diff) | |
| download | discoin-4949004d68dc08382df2c34ae519c1b1cfd60f1a.tar.xz discoin-4949004d68dc08382df2c34ae519c1b1cfd60f1a.zip | |
Add CMutableTransaction and make CTransaction immutable.
In addition, introduce a cached hash inside CTransaction, to prevent
recalculating it over and over again.
Diffstat (limited to 'src/chainparams.cpp')
| -rw-r--r-- | src/chainparams.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 31eac62d4..afbae6fc5 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -127,7 +127,7 @@ public: // CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B) // vMerkleTree: 4a5e1e const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks"; - CTransaction txNew; + CMutableTransaction txNew; txNew.vin.resize(1); txNew.vout.resize(1); txNew.vin[0].scriptSig = CScript() << 486604799 << CScriptNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp)); |