mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-05-31 08:13:52 +02:00
Make CBlock::vtx a vector of shared_ptr<CTransaction>
This commit is contained in:
@@ -27,7 +27,7 @@ std::string CBlock::ToString() const
|
||||
vtx.size());
|
||||
for (unsigned int i = 0; i < vtx.size(); i++)
|
||||
{
|
||||
s << " " << vtx[i].ToString() << "\n";
|
||||
s << " " << vtx[i]->ToString() << "\n";
|
||||
}
|
||||
return s.str();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user