- B4775D56FD901D7AF16136590BE4645F57631004C4E0EC35332374EEDC78D8574D6A2162D7BBA121843F710111209336ECD6553AF4B576BAD81B3639D2634AD5
+ 5FCC671189AE354164FAA71C266BD2F6A33CDAB807B2149EF639E11BC2507736A29C7FE5EE0768CBE391D694EC516E00AA86B26F602F45B61F02A0104B1FF1DC
bitcoin/src/main.cpp
(2567 . 11)(2567 . 20)
5 dPriority = 0;
6 }
7
8 void print() const
9 std::string ToString() const
10 {
11 printf("COrphan(hash=%s, dPriority=%.1f)\n", ptx->GetHash().ToString().substr(0,10).c_str(), dPriority);
12 std::string str;
13 str += strprintf("hash=%s,dPriority=%.1f,setDependsOn={", ptx->GetHash().ToString().c_str(), dPriority);
14 int i = 0;
15 BOOST_FOREACH(uint256 hash, setDependsOn)
16 printf(" setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
17 str += hash.ToString() + (++i == setDependsOn.size() ? "" : ",");
18 str += "}";
19 return str;
20 }
21
22 void print() const
23 {
24 printf(SINF SMEM "COrphan<%s>\n", ToString().c_str());
25 }
26 };
27