Merge pull request #2286 from gavinandresen/fix2285

Do not use C++11 std::vector.data()
This commit is contained in:
Gavin Andresen 2013-02-11 16:01:24 -08:00
commit 2f0fa79db2
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ Value getblocktemplate(const Array& params, bool fHelp)
}
entry.push_back(Pair("depends", deps));
int index_in_template = &tx - pblock->vtx.data();
int index_in_template = i - 1;
entry.push_back(Pair("fee", pblocktemplate->vTxFees[index_in_template]));
entry.push_back(Pair("sigops", pblocktemplate->vTxSigOps[index_in_template]));