mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-21 11:35:53 +00:00
deploy: 97712107b7
This commit is contained in:
@@ -280,11 +280,11 @@ $(function() {
|
||||
<div class="line"><a name="l00228"></a><span class="lineno"> 228</span>  <a class="code" href="classripple_1_1AmendmentTableImpl.html#a850d551b59a16bc03d7ab964cfd85111">getDesired</a>() <span class="keyword">override</span>;</div>
|
||||
<div class="line"><a name="l00229"></a><span class="lineno"> 229</span>  </div>
|
||||
<div class="line"><a name="l00230"></a><span class="lineno"> 230</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/container/map.html">std::map<uint256, std::uint32_t></a></div>
|
||||
<div class="line"><a name="l00231"></a><span class="lineno"> 231</span>  <a class="code" href="classripple_1_1AmendmentTableImpl.html#a4c135cfa7edb947b1e21d88ef6632a53">doVoting</a>(</div>
|
||||
<div class="line"><a name="l00231"></a><span class="lineno"> 231</span>  <a class="code" href="classripple_1_1AmendmentTableImpl.html#a41864d1f10a3572d5f5a3cb203beb546">doVoting</a>(</div>
|
||||
<div class="line"><a name="l00232"></a><span class="lineno"> 232</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/chrono/time_point.html">NetClock::time_point</a> closeTime,</div>
|
||||
<div class="line"><a name="l00233"></a><span class="lineno"> 233</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/container/set.html">std::set<uint256></a> <span class="keyword">const</span>& enabledAmendments,</div>
|
||||
<div class="line"><a name="l00234"></a><span class="lineno"> 234</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/container/map.html">majorityAmendments_t</a> <span class="keyword">const</span>& majorityAmendments,</div>
|
||||
<div class="line"><a name="l00235"></a><span class="lineno"> 235</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/container/vector.html">std::vector<STValidation::pointer></a> <span class="keyword">const</span>& validations) <span class="keyword">override</span>;</div>
|
||||
<div class="line"><a name="l00235"></a><span class="lineno"> 235</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/container/vector.html">std::vector</a><<a class="codeRef" href="http://en.cppreference.com/w/cpp/memory/shared_ptr.html">std::shared_ptr<STValidation></a>> <span class="keyword">const</span>& validations) <span class="keyword">override</span>;</div>
|
||||
<div class="line"><a name="l00236"></a><span class="lineno"> 236</span> };</div>
|
||||
<div class="line"><a name="l00237"></a><span class="lineno"> 237</span>  </div>
|
||||
<div class="line"><a name="l00238"></a><span class="lineno"> 238</span> <span class="comment">//------------------------------------------------------------------------------</span></div>
|
||||
@@ -475,7 +475,7 @@ $(function() {
|
||||
<div class="line"><a name="l00423"></a><span class="lineno"> 423</span>  <span class="comment">// Get the list of amendments we support and do not</span></div>
|
||||
<div class="line"><a name="l00424"></a><span class="lineno"> 424</span>  <span class="comment">// veto, but that are not already enabled</span></div>
|
||||
<div class="line"><a name="l00425"></a><span class="lineno"> 425</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/container/vector.html">std::vector<uint256></a> amendments;</div>
|
||||
<div class="line"><a name="l00426"></a><span class="lineno"> 426</span>  amendments.<a class="codeRef" href="http://en.cppreference.com/w/cpp/container/vector/reserve.html">reserve</a>(<a class="code" href="classripple_1_1AmendmentTableImpl.html#a7cca5bba8dff04a84023969c1499160f">amendmentMap_</a>.size());</div>
|
||||
<div class="line"><a name="l00426"></a><span class="lineno"> 426</span>  amendments.reserve(<a class="code" href="classripple_1_1AmendmentTableImpl.html#a7cca5bba8dff04a84023969c1499160f">amendmentMap_</a>.size());</div>
|
||||
<div class="line"><a name="l00427"></a><span class="lineno"> 427</span>  </div>
|
||||
<div class="line"><a name="l00428"></a><span class="lineno"> 428</span>  {</div>
|
||||
<div class="line"><a name="l00429"></a><span class="lineno"> 429</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/thread/lock_guard.html">std::lock_guard</a> sl(<a class="code" href="classripple_1_1AmendmentTableImpl.html#a08ceef79750994d25c0b416c378eecc0">mutex_</a>);</div>
|
||||
@@ -484,13 +484,13 @@ $(function() {
|
||||
<div class="line"><a name="l00432"></a><span class="lineno"> 432</span>  <span class="keywordflow">if</span> (e.second.supported && !e.second.vetoed &&</div>
|
||||
<div class="line"><a name="l00433"></a><span class="lineno"> 433</span>  (enabled.<a class="codeRef" href="http://en.cppreference.com/w/cpp/container/set/count.html">count</a>(e.first) == 0))</div>
|
||||
<div class="line"><a name="l00434"></a><span class="lineno"> 434</span>  {</div>
|
||||
<div class="line"><a name="l00435"></a><span class="lineno"> 435</span>  amendments.<a class="codeRef" href="http://en.cppreference.com/w/cpp/container/vector/push_back.html">push_back</a>(e.first);</div>
|
||||
<div class="line"><a name="l00435"></a><span class="lineno"> 435</span>  amendments.push_back(e.first);</div>
|
||||
<div class="line"><a name="l00436"></a><span class="lineno"> 436</span>  }</div>
|
||||
<div class="line"><a name="l00437"></a><span class="lineno"> 437</span>  }</div>
|
||||
<div class="line"><a name="l00438"></a><span class="lineno"> 438</span>  }</div>
|
||||
<div class="line"><a name="l00439"></a><span class="lineno"> 439</span>  </div>
|
||||
<div class="line"><a name="l00440"></a><span class="lineno"> 440</span>  <span class="keywordflow">if</span> (!amendments.<a class="codeRef" href="http://en.cppreference.com/w/cpp/container/vector/empty.html">empty</a>())</div>
|
||||
<div class="line"><a name="l00441"></a><span class="lineno"> 441</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/algorithm/sort.html">std::sort</a>(amendments.<a class="codeRef" href="http://en.cppreference.com/w/cpp/container/vector/begin.html">begin</a>(), amendments.<a class="codeRef" href="http://en.cppreference.com/w/cpp/container/vector/end.html">end</a>());</div>
|
||||
<div class="line"><a name="l00440"></a><span class="lineno"> 440</span>  <span class="keywordflow">if</span> (!amendments.empty())</div>
|
||||
<div class="line"><a name="l00441"></a><span class="lineno"> 441</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/algorithm/sort.html">std::sort</a>(amendments.begin(), amendments.end());</div>
|
||||
<div class="line"><a name="l00442"></a><span class="lineno"> 442</span>  </div>
|
||||
<div class="line"><a name="l00443"></a><span class="lineno"> 443</span>  <span class="keywordflow">return</span> amendments;</div>
|
||||
<div class="line"><a name="l00444"></a><span class="lineno"> 444</span> }</div>
|
||||
@@ -503,15 +503,15 @@ $(function() {
|
||||
<div class="line"><a name="l00451"></a><span class="lineno"> 451</span> }</div>
|
||||
<div class="line"><a name="l00452"></a><span class="lineno"> 452</span>  </div>
|
||||
<div class="line"><a name="l00453"></a><span class="lineno"> 453</span> <a class="codeRef" href="http://en.cppreference.com/w/cpp/container/map.html">std::map<uint256, std::uint32_t></a></div>
|
||||
<div class="line"><a name="l00454"></a><span class="lineno"><a class="line" href="classripple_1_1AmendmentTableImpl.html#a4c135cfa7edb947b1e21d88ef6632a53"> 454</a></span> <a class="code" href="classripple_1_1AmendmentTableImpl.html#a4c135cfa7edb947b1e21d88ef6632a53">AmendmentTableImpl::doVoting</a>(</div>
|
||||
<div class="line"><a name="l00454"></a><span class="lineno"><a class="line" href="classripple_1_1AmendmentTableImpl.html#a41864d1f10a3572d5f5a3cb203beb546"> 454</a></span> <a class="code" href="classripple_1_1AmendmentTableImpl.html#a41864d1f10a3572d5f5a3cb203beb546">AmendmentTableImpl::doVoting</a>(</div>
|
||||
<div class="line"><a name="l00455"></a><span class="lineno"> 455</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/chrono/time_point.html">NetClock::time_point</a> closeTime,</div>
|
||||
<div class="line"><a name="l00456"></a><span class="lineno"> 456</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/container/set.html">std::set<uint256></a> <span class="keyword">const</span>& enabledAmendments,</div>
|
||||
<div class="line"><a name="l00457"></a><span class="lineno"> 457</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/container/map.html">majorityAmendments_t</a> <span class="keyword">const</span>& majorityAmendments,</div>
|
||||
<div class="line"><a name="l00458"></a><span class="lineno"> 458</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/container/vector.html">std::vector<STValidation::pointer></a> <span class="keyword">const</span>& valSet)</div>
|
||||
<div class="line"><a name="l00458"></a><span class="lineno"> 458</span>  <a class="codeRef" href="http://en.cppreference.com/w/cpp/container/vector.html">std::vector</a><<a class="codeRef" href="http://en.cppreference.com/w/cpp/memory/shared_ptr.html">std::shared_ptr<STValidation></a>> <span class="keyword">const</span>& valSet)</div>
|
||||
<div class="line"><a name="l00459"></a><span class="lineno"> 459</span> {</div>
|
||||
<div class="line"><a name="l00460"></a><span class="lineno"> 460</span>  JLOG(<a class="code" href="classripple_1_1AmendmentTableImpl.html#aaf114c1d54cf39de4ad5ba1bcd804547">j_</a>.<a class="code" href="classbeast_1_1Journal.html#abbe082bd27ca0f1d1365af2824e4f85b">trace</a>()) << <span class="stringliteral">"voting at "</span> << closeTime.<a class="codeRef" href="http://en.cppreference.com/w/cpp/chrono/time_point/time_since_epoch.html">time_since_epoch</a>().count()</div>
|
||||
<div class="line"><a name="l00461"></a><span class="lineno"> 461</span>  << <span class="stringliteral">": "</span> << enabledAmendments.<a class="codeRef" href="http://en.cppreference.com/w/cpp/container/set/size.html">size</a>() << <span class="stringliteral">", "</span></div>
|
||||
<div class="line"><a name="l00462"></a><span class="lineno"> 462</span>  << majorityAmendments.<a class="codeRef" href="http://en.cppreference.com/w/cpp/container/map/size.html">size</a>() << <span class="stringliteral">", "</span> << valSet.<a class="codeRef" href="http://en.cppreference.com/w/cpp/container/vector/size.html">size</a>();</div>
|
||||
<div class="line"><a name="l00462"></a><span class="lineno"> 462</span>  << majorityAmendments.<a class="codeRef" href="http://en.cppreference.com/w/cpp/container/map/size.html">size</a>() << <span class="stringliteral">", "</span> << valSet.size();</div>
|
||||
<div class="line"><a name="l00463"></a><span class="lineno"> 463</span>  </div>
|
||||
<div class="line"><a name="l00464"></a><span class="lineno"> 464</span>  <span class="keyword">auto</span> vote = std::make_unique<AmendmentSet>();</div>
|
||||
<div class="line"><a name="l00465"></a><span class="lineno"> 465</span>  </div>
|
||||
@@ -718,6 +718,7 @@ $(function() {
|
||||
<div class="line"><a name="l00666"></a><span class="lineno"> 666</span> } <span class="comment">// namespace ripple</span></div>
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
<div class="ttc" id="aclassripple_1_1Section_html"><div class="ttname"><a href="classripple_1_1Section.html">ripple::Section</a></div><div class="ttdoc">Holds a collection of configuration values.</div><div class="ttdef"><b>Definition:</b> <a href="BasicConfig_8h_source.html#l00043">BasicConfig.h:43</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_a41864d1f10a3572d5f5a3cb203beb546"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#a41864d1f10a3572d5f5a3cb203beb546">ripple::AmendmentTableImpl::doVoting</a></div><div class="ttdeci">std::map< uint256, std::uint32_t > doVoting(NetClock::time_point closeTime, std::set< uint256 > const &enabledAmendments, majorityAmendments_t const &majorityAmendments, std::vector< std::shared_ptr< STValidation >> const &validations) override</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00454">AmendmentTable.cpp:454</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1AmendmentState_html_a2d39d31177436771b94c8fa48f5d67f4"><div class="ttname"><a href="structripple_1_1AmendmentState.html#a2d39d31177436771b94c8fa48f5d67f4">ripple::AmendmentState::supported</a></div><div class="ttdeci">bool supported</div><div class="ttdoc">Indicates an amendment that this server has code support for.</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00086">AmendmentTable.cpp:86</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_aefbfbe13885b57244364ab17906ebb8c"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#aefbfbe13885b57244364ab17906ebb8c">ripple::AmendmentTableImpl::lastUpdateSeq_</a></div><div class="ttdeci">std::uint32_t lastUpdateSeq_</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00145">AmendmentTable.cpp:145</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_add86959a39f8701193ebcae668625b84"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#add86959a39f8701193ebcae668625b84">ripple::AmendmentTableImpl::disable</a></div><div class="ttdeci">bool disable(uint256 const &amendment) override</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00378">AmendmentTable.cpp:378</a></div></div>
|
||||
@@ -725,10 +726,10 @@ $(function() {
|
||||
<div class="ttc" id="astructripple_1_1AmendmentState_html"><div class="ttname"><a href="structripple_1_1AmendmentState.html">ripple::AmendmentState</a></div><div class="ttdoc">Current state of an amendment.</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00073">AmendmentTable.cpp:73</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_a237ccf3864684162420830c1c9680735"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#a237ccf3864684162420830c1c9680735">ripple::AmendmentTableImpl::firstUnsupportedExpected_</a></div><div class="ttdeci">boost::optional< NetClock::time_point > firstUnsupportedExpected_</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00163">AmendmentTable.cpp:163</a></div></div>
|
||||
<div class="ttc" id="abasic_string_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/string/basic_string.html">std::string</a></div><div class="ttdoc">STL class.</div></div>
|
||||
<div class="ttc" id="ashared_ptr_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/memory/shared_ptr.html">std::shared_ptr</a></div><div class="ttdoc">STL class.</div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1Journal_html_abbe082bd27ca0f1d1365af2824e4f85b"><div class="ttname"><a href="classbeast_1_1Journal.html#abbe082bd27ca0f1d1365af2824e4f85b">beast::Journal::trace</a></div><div class="ttdeci">Stream trace() const</div><div class="ttdoc">Severity stream access functions.</div><div class="ttdef"><b>Definition:</b> <a href="Journal_8h_source.html#l00309">Journal.h:309</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1AmendmentSet_html_ab4f2e1132e563e9fcb678f0f51e6dae5"><div class="ttname"><a href="structripple_1_1AmendmentSet.html#ab4f2e1132e563e9fcb678f0f51e6dae5">ripple::AmendmentSet::AmendmentSet</a></div><div class="ttdeci">AmendmentSet()=default</div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_a08ceef79750994d25c0b416c378eecc0"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#a08ceef79750994d25c0b416c378eecc0">ripple::AmendmentTableImpl::mutex_</a></div><div class="ttdeci">std::mutex mutex_</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00142">AmendmentTable.cpp:142</a></div></div>
|
||||
<div class="ttc" id="areserve_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/vector/reserve.html">std::vector::reserve</a></div><div class="ttdeci">T reserve(T... args)</div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_ac17353f2946a09f26809d15b3c24cc48"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#ac17353f2946a09f26809d15b3c24cc48">ripple::AmendmentTableImpl::unsupportedEnabled_</a></div><div class="ttdeci">bool unsupportedEnabled_</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00159">AmendmentTable.cpp:159</a></div></div>
|
||||
<div class="ttc" id="avector_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/vector.html">std::vector</a></div><div class="ttdoc">STL class.</div></div>
|
||||
<div class="ttc" id="afind_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/map/find.html">std::map::find</a></div><div class="ttdeci">T find(T... args)</div></div>
|
||||
@@ -773,7 +774,6 @@ $(function() {
|
||||
<div class="ttc" id="anamespaceripple_html"><div class="ttname"><a href="namespaceripple.html">ripple</a></div><div class="ttdoc">Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.</div><div class="ttdef"><b>Definition:</b> <a href="RCLCensorshipDetector_8h_source.html#l00029">RCLCensorshipDetector.h:29</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_a646a113ce49de65c03413431448241e9"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#a646a113ce49de65c03413431448241e9">ripple::AmendmentTableImpl::getJson</a></div><div class="ttdeci">Json::Value getJson(int) override</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00624">AmendmentTable.cpp:624</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_a7cca5bba8dff04a84023969c1499160f"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#a7cca5bba8dff04a84023969c1499160f">ripple::AmendmentTableImpl::amendmentMap_</a></div><div class="ttdeci">hash_map< uint256, AmendmentState > amendmentMap_</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00144">AmendmentTable.cpp:144</a></div></div>
|
||||
<div class="ttc" id="abegin_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/vector/begin.html">std::vector::begin</a></div><div class="ttdeci">T begin(T... args)</div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_af0904a2a84102ca9615d05706d6c0bed"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#af0904a2a84102ca9615d05706d6c0bed">ripple::AmendmentTableImpl::doValidation</a></div><div class="ttdeci">std::vector< uint256 > doValidation(std::set< uint256 > const &enabledAmendments) override</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00421">AmendmentTable.cpp:421</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_a51e688abb62a1f399751971156723aae"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#a51e688abb62a1f399751971156723aae">ripple::AmendmentTableImpl::lastVote_</a></div><div class="ttdeci">std::unique_ptr< AmendmentSet > lastVote_</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00156">AmendmentTable.cpp:156</a></div></div>
|
||||
<div class="ttc" id="ainsert_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/set/insert.html">std::set::insert</a></div><div class="ttdeci">T insert(T... args)</div></div>
|
||||
@@ -782,13 +782,13 @@ $(function() {
|
||||
<div class="ttc" id="astructripple_1_1AmendmentSet_html_af755cd97d1178416ff3f12f5480acdeb"><div class="ttname"><a href="structripple_1_1AmendmentSet.html#af755cd97d1178416ff3f12f5480acdeb">ripple::AmendmentSet::mThreshold</a></div><div class="ttdeci">int mThreshold</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00106">AmendmentTable.cpp:106</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1AmendmentState_html_aa277e358200e0a43605b34f901d6f6d7"><div class="ttname"><a href="structripple_1_1AmendmentState.html#aa277e358200e0a43605b34f901d6f6d7">ripple::AmendmentState::name</a></div><div class="ttdeci">std::string name</div><div class="ttdoc">The name of this amendment, possibly empty.</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00089">AmendmentTable.cpp:89</a></div></div>
|
||||
<div class="ttc" id="acount_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/set/count.html">std::set::count</a></div><div class="ttdeci">T count(T... args)</div></div>
|
||||
<div class="ttc" id="aempty_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/vector/empty.html">std::vector::empty</a></div><div class="ttdeci">T empty(T... args)</div></div>
|
||||
<div class="ttc" id="aempty_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/string/basic_string/empty.html">std::string::empty</a></div><div class="ttdeci">T empty(T... args)</div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_a70da36c8f95045e23d2d9aa35746dbf3"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#a70da36c8f95045e23d2d9aa35746dbf3">ripple::AmendmentTableImpl::needValidatedLedger</a></div><div class="ttdeci">bool needValidatedLedger(LedgerIndex seq) override</div><div class="ttdoc">Called to determine whether the amendment logic needs to process a new validated ledger.</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00550">AmendmentTable.cpp:550</a></div></div>
|
||||
<div class="ttc" id="amutex_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/header/mutex.html">mutex</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1Journal_html_a556228cb60bcf405c225d3f64b7b01ae"><div class="ttname"><a href="classbeast_1_1Journal.html#a556228cb60bcf405c225d3f64b7b01ae">beast::Journal::debug</a></div><div class="ttdeci">Stream debug() const</div><div class="ttdef"><b>Definition:</b> <a href="Journal_8h_source.html#l00315">Journal.h:315</a></div></div>
|
||||
<div class="ttc" id="amake_pair_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/utility/pair/make_pair.html">std::make_pair</a></div><div class="ttdeci">T make_pair(T... args)</div></div>
|
||||
<div class="ttc" id="aend_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/vector/end.html">std::vector::end</a></div><div class="ttdeci">T end(T... args)</div></div>
|
||||
<div class="ttc" id="anamespaceripple_html_a9e03c8b33593df82d17427a8771e3106"><div class="ttname"><a href="namespaceripple.html#a9e03c8b33593df82d17427a8771e3106">ripple::sfAmendments</a></div><div class="ttdeci">const SF_Vec256 sfAmendments(access, STI_VECTOR256, 3, "Amendments")</div><div class="ttdef"><b>Definition:</b> <a href="SField_8h_source.html#l00489">SField.h:489</a></div></div>
|
||||
<div class="ttc" id="aend_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/map/end.html">std::map::end</a></div><div class="ttdeci">T end(T... args)</div></div>
|
||||
<div class="ttc" id="anamespaceripple_html_a9e03c8b33593df82d17427a8771e3106"><div class="ttname"><a href="namespaceripple.html#a9e03c8b33593df82d17427a8771e3106">ripple::sfAmendments</a></div><div class="ttdeci">const SF_Vec256 sfAmendments(access, STI_VECTOR256, 3, "Amendments")</div><div class="ttdef"><b>Definition:</b> <a href="SField_8h_source.html#l00491">SField.h:491</a></div></div>
|
||||
<div class="ttc" id="amax_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/algorithm/max.html">std::max</a></div><div class="ttdeci">T max(T... args)</div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_aaf114c1d54cf39de4ad5ba1bcd804547"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#aaf114c1d54cf39de4ad5ba1bcd804547">ripple::AmendmentTableImpl::j_</a></div><div class="ttdeci">const beast::Journal j_</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00165">AmendmentTable.cpp:165</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1AmendmentSet_html"><div class="ttname"><a href="structripple_1_1AmendmentSet.html">ripple::AmendmentSet</a></div><div class="ttdoc">The status of all amendments requested in a given window.</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00095">AmendmentTable.cpp:95</a></div></div>
|
||||
@@ -797,7 +797,6 @@ $(function() {
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_aac90ea05290f2e3a87459bf28121c820"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#aac90ea05290f2e3a87459bf28121c820">ripple::AmendmentTableImpl::get</a></div><div class="ttdeci">AmendmentState * get(uint256 const &amendment)</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00307">AmendmentTable.cpp:307</a></div></div>
|
||||
<div class="ttc" id="aunordered_map_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/unordered_map.html">std::unordered_map</a></div><div class="ttdoc">STL class.</div></div>
|
||||
<div class="ttc" id="aset_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/set.html">std::set</a></div><div class="ttdoc">STL class.</div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_a4c135cfa7edb947b1e21d88ef6632a53"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#a4c135cfa7edb947b1e21d88ef6632a53">ripple::AmendmentTableImpl::doVoting</a></div><div class="ttdeci">std::map< uint256, std::uint32_t > doVoting(NetClock::time_point closeTime, std::set< uint256 > const &enabledAmendments, majorityAmendments_t const &majorityAmendments, std::vector< STValidation::pointer > const &validations) override</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00454">AmendmentTable.cpp:454</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_a89e2a7a13c05c5234d21980bb6e3ffcd"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#a89e2a7a13c05c5234d21980bb6e3ffcd">ripple::AmendmentTableImpl::add</a></div><div class="ttdeci">AmendmentState * add(uint256 const &amendment)</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00300">AmendmentTable.cpp:300</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_a850d551b59a16bc03d7ab964cfd85111"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#a850d551b59a16bc03d7ab964cfd85111">ripple::AmendmentTableImpl::getDesired</a></div><div class="ttdeci">std::vector< uint256 > getDesired() override</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00447">AmendmentTable.cpp:447</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1AmendmentTableImpl_html_a5a1de10b5b7e51cc4f20f2636503c2e6"><div class="ttname"><a href="classripple_1_1AmendmentTableImpl.html#a5a1de10b5b7e51cc4f20f2636503c2e6">ripple::AmendmentTableImpl::doValidatedLedger</a></div><div class="ttdeci">void doValidatedLedger(LedgerIndex seq, std::set< uint256 > const &enabled, majorityAmendments_t const &majority) override</div><div class="ttdef"><b>Definition:</b> <a href="AmendmentTable_8cpp_source.html#l00561">AmendmentTable.cpp:561</a></div></div>
|
||||
|
||||
Reference in New Issue
Block a user