mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-21 03:26:01 +00:00
deploy: 159dfb5acb
This commit is contained in:
@@ -132,75 +132,73 @@ $(function() {
|
||||
<div class="line"><a id="l00055" name="l00055"></a><span class="lineno"> 55</span> </div>
|
||||
<div class="line"><a id="l00056" name="l00056"></a><span class="lineno"> 56</span> <span class="comment">// If validated is false, it means "not yet validated."</span></div>
|
||||
<div class="line"><a id="l00057" name="l00057"></a><span class="lineno"> 57</span> <span class="comment">// Once validated is true, it will never be set false at a later time.</span></div>
|
||||
<div class="line"><a id="l00058" name="l00058"></a><span class="lineno"> 58</span> <span class="comment">// NOTE: If you are accessing this directly, you are probably doing it</span></div>
|
||||
<div class="line"><a id="l00059" name="l00059"></a><span class="lineno"> 59</span> <span class="comment">// wrong. Use LedgerMaster::isValidated().</span></div>
|
||||
<div class="line"><a id="l00060" name="l00060"></a><span class="lineno"> 60</span> <span class="comment">// VFALCO TODO Make this not mutable</span></div>
|
||||
<div class="line"><a id="l00061" name="l00061"></a><span class="lineno"><a class="line" href="structripple_1_1LedgerHeader.html#ae95b3432469ab4cdef2d0caeb40f98f4"> 61</a></span> <span class="keywordtype">bool</span> <span class="keyword">mutable</span> <a class="code hl_variable" href="structripple_1_1LedgerHeader.html#ae95b3432469ab4cdef2d0caeb40f98f4">validated</a> = <span class="keyword">false</span>;</div>
|
||||
<div class="line"><a id="l00062" name="l00062"></a><span class="lineno"><a class="line" href="structripple_1_1LedgerHeader.html#a7b0160181d5c07888cfd7f13e31e7567"> 62</a></span> <span class="keywordtype">bool</span> <a class="code hl_variable" href="structripple_1_1LedgerHeader.html#a7b0160181d5c07888cfd7f13e31e7567">accepted</a> = <span class="keyword">false</span>;</div>
|
||||
<div class="line"><a id="l00063" name="l00063"></a><span class="lineno"> 63</span> </div>
|
||||
<div class="line"><a id="l00064" name="l00064"></a><span class="lineno"> 64</span> <span class="comment">// flags indicating how this ledger close took place</span></div>
|
||||
<div class="line"><a id="l00065" name="l00065"></a><span class="lineno"><a class="line" href="structripple_1_1LedgerHeader.html#a9808a73e7430aff3c1590d4ae552f620"> 65</a></span> <span class="keywordtype">int</span> <a class="code hl_variable" href="structripple_1_1LedgerHeader.html#a9808a73e7430aff3c1590d4ae552f620">closeFlags</a> = 0;</div>
|
||||
<div class="line"><a id="l00066" name="l00066"></a><span class="lineno"> 66</span> </div>
|
||||
<div class="line"><a id="l00067" name="l00067"></a><span class="lineno"> 67</span> <span class="comment">// the resolution for this ledger close time (2-120 seconds)</span></div>
|
||||
<div class="line"><a id="l00068" name="l00068"></a><span class="lineno"><a class="line" href="structripple_1_1LedgerHeader.html#ab0b35abca886a06b38eead7b84cba8c3"> 68</a></span> <a class="code hl_classRef" href="http://en.cppreference.com/w/cpp/chrono/duration.html">NetClock::duration</a> <a class="code hl_variable" href="structripple_1_1LedgerHeader.html#ab0b35abca886a06b38eead7b84cba8c3">closeTimeResolution</a> = {};</div>
|
||||
<div class="line"><a id="l00069" name="l00069"></a><span class="lineno"> 69</span> </div>
|
||||
<div class="line"><a id="l00070" name="l00070"></a><span class="lineno"> 70</span> <span class="comment">// For closed ledgers, the time the ledger</span></div>
|
||||
<div class="line"><a id="l00071" name="l00071"></a><span class="lineno"> 71</span> <span class="comment">// closed. For open ledgers, the time the ledger</span></div>
|
||||
<div class="line"><a id="l00072" name="l00072"></a><span class="lineno"> 72</span> <span class="comment">// will close if there's no transactions.</span></div>
|
||||
<div class="line"><a id="l00073" name="l00073"></a><span class="lineno"> 73</span> <span class="comment">//</span></div>
|
||||
<div class="line"><a id="l00074" name="l00074"></a><span class="lineno"><a class="line" href="structripple_1_1LedgerHeader.html#a3f117cf9d4ccb20b5ba15d8639540707"> 74</a></span> <a class="code hl_classRef" href="http://en.cppreference.com/w/cpp/chrono/time_point.html">NetClock::time_point</a> <a class="code hl_variable" href="structripple_1_1LedgerHeader.html#a3f117cf9d4ccb20b5ba15d8639540707">closeTime</a> = {};</div>
|
||||
<div class="line"><a id="l00075" name="l00075"></a><span class="lineno"> 75</span>};</div>
|
||||
<div class="line"><a id="l00076" name="l00076"></a><span class="lineno"> 76</span> </div>
|
||||
<div class="line"><a id="l00077" name="l00077"></a><span class="lineno"> 77</span><span class="comment">// We call them "headers" in conversation</span></div>
|
||||
<div class="line"><a id="l00078" name="l00078"></a><span class="lineno"> 78</span><span class="comment">// but "info" in code. Unintuitive.</span></div>
|
||||
<div class="line"><a id="l00079" name="l00079"></a><span class="lineno"> 79</span><span class="comment">// This alias lets us give the "correct" name to the class</span></div>
|
||||
<div class="line"><a id="l00080" name="l00080"></a><span class="lineno"> 80</span><span class="comment">// without yet disturbing existing uses.</span></div>
|
||||
<div class="line"><a id="l00081" name="l00081"></a><span class="lineno"><a class="line" href="namespaceripple.html#aaf521cde20561da32d6a54a105363555"> 81</a></span><span class="keyword">using </span><a class="code hl_struct" href="structripple_1_1LedgerHeader.html">LedgerInfo</a> = <a class="code hl_struct" href="structripple_1_1LedgerHeader.html">LedgerHeader</a>;</div>
|
||||
<div class="line"><a id="l00082" name="l00082"></a><span class="lineno"> 82</span> </div>
|
||||
<div class="line"><a id="l00083" name="l00083"></a><span class="lineno"> 83</span><span class="comment">// ledger close flags</span></div>
|
||||
<div class="line"><a id="l00084" name="l00084"></a><span class="lineno"><a class="line" href="namespaceripple.html#a8b2f5b67f10875b32c833c88f3bbb07f"> 84</a></span><span class="keyword">static</span> <a class="code hl_classRef" href="http://en.cppreference.com/w/cpp/types/integer.html">std::uint32_t</a> <span class="keyword">const</span> <a class="code hl_variable" href="namespaceripple.html#a8b2f5b67f10875b32c833c88f3bbb07f">sLCF_NoConsensusTime</a> = 0x01;</div>
|
||||
<div class="line"><a id="l00085" name="l00085"></a><span class="lineno"> 85</span> </div>
|
||||
<div class="line"><a id="l00086" name="l00086"></a><span class="lineno"> 86</span><span class="keyword">inline</span> <span class="keywordtype">bool</span></div>
|
||||
<div class="line"><a id="l00087" name="l00087"></a><span class="lineno"><a class="line" href="namespaceripple.html#a02bb3582ce5e2941c4b4dcea4586db72"> 87</a></span><a class="code hl_function" href="namespaceripple.html#a02bb3582ce5e2941c4b4dcea4586db72">getCloseAgree</a>(<a class="code hl_struct" href="structripple_1_1LedgerHeader.html">LedgerHeader</a> <span class="keyword">const</span>& info)</div>
|
||||
<div class="line"><a id="l00088" name="l00088"></a><span class="lineno"> 88</span>{</div>
|
||||
<div class="line"><a id="l00089" name="l00089"></a><span class="lineno"> 89</span> <span class="keywordflow">return</span> (info.<a class="code hl_variable" href="structripple_1_1LedgerHeader.html#a9808a73e7430aff3c1590d4ae552f620">closeFlags</a> & <a class="code hl_variable" href="namespaceripple.html#a8b2f5b67f10875b32c833c88f3bbb07f">sLCF_NoConsensusTime</a>) == 0;</div>
|
||||
<div class="line"><a id="l00090" name="l00090"></a><span class="lineno"> 90</span>}</div>
|
||||
<div class="line"><a id="l00091" name="l00091"></a><span class="lineno"> 91</span> </div>
|
||||
<div class="line"><a id="l00092" name="l00092"></a><span class="lineno"> 92</span><span class="keywordtype">void</span></div>
|
||||
<div class="line"><a id="l00093" name="l00093"></a><span class="lineno"> 93</span><a class="code hl_function" href="namespaceripple.html#ad6ef4b359d5387fe20ce3ca7e3a293e7">addRaw</a>(LedgerHeader <span class="keyword">const</span>&, Serializer&, <span class="keywordtype">bool</span> includeHash = <span class="keyword">false</span>);</div>
|
||||
<div class="line"><a id="l00094" name="l00094"></a><span class="lineno"> 94</span> </div>
|
||||
<div class="line"><a id="l00096" name="l00096"></a><span class="lineno"> 96</span>LedgerHeader</div>
|
||||
<div class="line"><a id="l00097" name="l00097"></a><span class="lineno"> 97</span><a class="code hl_function" href="namespaceripple.html#ae38c39246f1566a67d674d40ced5a30b">deserializeHeader</a>(Slice data, <span class="keywordtype">bool</span> hasHash = <span class="keyword">false</span>);</div>
|
||||
<div class="line"><a id="l00098" name="l00098"></a><span class="lineno"> 98</span> </div>
|
||||
<div class="line"><a id="l00100" name="l00100"></a><span class="lineno"> 100</span>LedgerHeader</div>
|
||||
<div class="line"><a id="l00101" name="l00101"></a><span class="lineno"> 101</span><a class="code hl_function" href="namespaceripple.html#a022d9bbb24b2a476e64e282e9876ca93">deserializePrefixedHeader</a>(Slice data, <span class="keywordtype">bool</span> hasHash = <span class="keyword">false</span>);</div>
|
||||
<div class="line"><a id="l00058" name="l00058"></a><span class="lineno"> 58</span> <span class="comment">// VFALCO TODO Make this not mutable</span></div>
|
||||
<div class="line"><a id="l00059" name="l00059"></a><span class="lineno"><a class="line" href="structripple_1_1LedgerHeader.html#ae95b3432469ab4cdef2d0caeb40f98f4"> 59</a></span> <span class="keywordtype">bool</span> <span class="keyword">mutable</span> <a class="code hl_variable" href="structripple_1_1LedgerHeader.html#ae95b3432469ab4cdef2d0caeb40f98f4">validated</a> = <span class="keyword">false</span>;</div>
|
||||
<div class="line"><a id="l00060" name="l00060"></a><span class="lineno"><a class="line" href="structripple_1_1LedgerHeader.html#a7b0160181d5c07888cfd7f13e31e7567"> 60</a></span> <span class="keywordtype">bool</span> <a class="code hl_variable" href="structripple_1_1LedgerHeader.html#a7b0160181d5c07888cfd7f13e31e7567">accepted</a> = <span class="keyword">false</span>;</div>
|
||||
<div class="line"><a id="l00061" name="l00061"></a><span class="lineno"> 61</span> </div>
|
||||
<div class="line"><a id="l00062" name="l00062"></a><span class="lineno"> 62</span> <span class="comment">// flags indicating how this ledger close took place</span></div>
|
||||
<div class="line"><a id="l00063" name="l00063"></a><span class="lineno"><a class="line" href="structripple_1_1LedgerHeader.html#a9808a73e7430aff3c1590d4ae552f620"> 63</a></span> <span class="keywordtype">int</span> <a class="code hl_variable" href="structripple_1_1LedgerHeader.html#a9808a73e7430aff3c1590d4ae552f620">closeFlags</a> = 0;</div>
|
||||
<div class="line"><a id="l00064" name="l00064"></a><span class="lineno"> 64</span> </div>
|
||||
<div class="line"><a id="l00065" name="l00065"></a><span class="lineno"> 65</span> <span class="comment">// the resolution for this ledger close time (2-120 seconds)</span></div>
|
||||
<div class="line"><a id="l00066" name="l00066"></a><span class="lineno"><a class="line" href="structripple_1_1LedgerHeader.html#ab0b35abca886a06b38eead7b84cba8c3"> 66</a></span> <a class="code hl_classRef" href="http://en.cppreference.com/w/cpp/chrono/duration.html">NetClock::duration</a> <a class="code hl_variable" href="structripple_1_1LedgerHeader.html#ab0b35abca886a06b38eead7b84cba8c3">closeTimeResolution</a> = {};</div>
|
||||
<div class="line"><a id="l00067" name="l00067"></a><span class="lineno"> 67</span> </div>
|
||||
<div class="line"><a id="l00068" name="l00068"></a><span class="lineno"> 68</span> <span class="comment">// For closed ledgers, the time the ledger</span></div>
|
||||
<div class="line"><a id="l00069" name="l00069"></a><span class="lineno"> 69</span> <span class="comment">// closed. For open ledgers, the time the ledger</span></div>
|
||||
<div class="line"><a id="l00070" name="l00070"></a><span class="lineno"> 70</span> <span class="comment">// will close if there's no transactions.</span></div>
|
||||
<div class="line"><a id="l00071" name="l00071"></a><span class="lineno"> 71</span> <span class="comment">//</span></div>
|
||||
<div class="line"><a id="l00072" name="l00072"></a><span class="lineno"><a class="line" href="structripple_1_1LedgerHeader.html#a3f117cf9d4ccb20b5ba15d8639540707"> 72</a></span> <a class="code hl_classRef" href="http://en.cppreference.com/w/cpp/chrono/time_point.html">NetClock::time_point</a> <a class="code hl_variable" href="structripple_1_1LedgerHeader.html#a3f117cf9d4ccb20b5ba15d8639540707">closeTime</a> = {};</div>
|
||||
<div class="line"><a id="l00073" name="l00073"></a><span class="lineno"> 73</span>};</div>
|
||||
<div class="line"><a id="l00074" name="l00074"></a><span class="lineno"> 74</span> </div>
|
||||
<div class="line"><a id="l00075" name="l00075"></a><span class="lineno"> 75</span><span class="comment">// We call them "headers" in conversation</span></div>
|
||||
<div class="line"><a id="l00076" name="l00076"></a><span class="lineno"> 76</span><span class="comment">// but "info" in code. Unintuitive.</span></div>
|
||||
<div class="line"><a id="l00077" name="l00077"></a><span class="lineno"> 77</span><span class="comment">// This alias lets us give the "correct" name to the class</span></div>
|
||||
<div class="line"><a id="l00078" name="l00078"></a><span class="lineno"> 78</span><span class="comment">// without yet disturbing existing uses.</span></div>
|
||||
<div class="line"><a id="l00079" name="l00079"></a><span class="lineno"><a class="line" href="namespaceripple.html#aaf521cde20561da32d6a54a105363555"> 79</a></span><span class="keyword">using </span><a class="code hl_struct" href="structripple_1_1LedgerHeader.html">LedgerInfo</a> = <a class="code hl_struct" href="structripple_1_1LedgerHeader.html">LedgerHeader</a>;</div>
|
||||
<div class="line"><a id="l00080" name="l00080"></a><span class="lineno"> 80</span> </div>
|
||||
<div class="line"><a id="l00081" name="l00081"></a><span class="lineno"> 81</span><span class="comment">// ledger close flags</span></div>
|
||||
<div class="line"><a id="l00082" name="l00082"></a><span class="lineno"><a class="line" href="namespaceripple.html#a8b2f5b67f10875b32c833c88f3bbb07f"> 82</a></span><span class="keyword">static</span> <a class="code hl_classRef" href="http://en.cppreference.com/w/cpp/types/integer.html">std::uint32_t</a> <span class="keyword">const</span> <a class="code hl_variable" href="namespaceripple.html#a8b2f5b67f10875b32c833c88f3bbb07f">sLCF_NoConsensusTime</a> = 0x01;</div>
|
||||
<div class="line"><a id="l00083" name="l00083"></a><span class="lineno"> 83</span> </div>
|
||||
<div class="line"><a id="l00084" name="l00084"></a><span class="lineno"> 84</span><span class="keyword">inline</span> <span class="keywordtype">bool</span></div>
|
||||
<div class="line"><a id="l00085" name="l00085"></a><span class="lineno"><a class="line" href="namespaceripple.html#a02bb3582ce5e2941c4b4dcea4586db72"> 85</a></span><a class="code hl_function" href="namespaceripple.html#a02bb3582ce5e2941c4b4dcea4586db72">getCloseAgree</a>(<a class="code hl_struct" href="structripple_1_1LedgerHeader.html">LedgerHeader</a> <span class="keyword">const</span>& info)</div>
|
||||
<div class="line"><a id="l00086" name="l00086"></a><span class="lineno"> 86</span>{</div>
|
||||
<div class="line"><a id="l00087" name="l00087"></a><span class="lineno"> 87</span> <span class="keywordflow">return</span> (info.<a class="code hl_variable" href="structripple_1_1LedgerHeader.html#a9808a73e7430aff3c1590d4ae552f620">closeFlags</a> & <a class="code hl_variable" href="namespaceripple.html#a8b2f5b67f10875b32c833c88f3bbb07f">sLCF_NoConsensusTime</a>) == 0;</div>
|
||||
<div class="line"><a id="l00088" name="l00088"></a><span class="lineno"> 88</span>}</div>
|
||||
<div class="line"><a id="l00089" name="l00089"></a><span class="lineno"> 89</span> </div>
|
||||
<div class="line"><a id="l00090" name="l00090"></a><span class="lineno"> 90</span><span class="keywordtype">void</span></div>
|
||||
<div class="line"><a id="l00091" name="l00091"></a><span class="lineno"> 91</span><a class="code hl_function" href="namespaceripple.html#ad6ef4b359d5387fe20ce3ca7e3a293e7">addRaw</a>(LedgerHeader <span class="keyword">const</span>&, Serializer&, <span class="keywordtype">bool</span> includeHash = <span class="keyword">false</span>);</div>
|
||||
<div class="line"><a id="l00092" name="l00092"></a><span class="lineno"> 92</span> </div>
|
||||
<div class="line"><a id="l00094" name="l00094"></a><span class="lineno"> 94</span>LedgerHeader</div>
|
||||
<div class="line"><a id="l00095" name="l00095"></a><span class="lineno"> 95</span><a class="code hl_function" href="namespaceripple.html#ae38c39246f1566a67d674d40ced5a30b">deserializeHeader</a>(Slice data, <span class="keywordtype">bool</span> hasHash = <span class="keyword">false</span>);</div>
|
||||
<div class="line"><a id="l00096" name="l00096"></a><span class="lineno"> 96</span> </div>
|
||||
<div class="line"><a id="l00098" name="l00098"></a><span class="lineno"> 98</span>LedgerHeader</div>
|
||||
<div class="line"><a id="l00099" name="l00099"></a><span class="lineno"> 99</span><a class="code hl_function" href="namespaceripple.html#a022d9bbb24b2a476e64e282e9876ca93">deserializePrefixedHeader</a>(Slice data, <span class="keywordtype">bool</span> hasHash = <span class="keyword">false</span>);</div>
|
||||
<div class="line"><a id="l00100" name="l00100"></a><span class="lineno"> 100</span> </div>
|
||||
<div class="line"><a id="l00101" name="l00101"></a><span class="lineno"> 101</span>} <span class="comment">// namespace ripple</span></div>
|
||||
<div class="line"><a id="l00102" name="l00102"></a><span class="lineno"> 102</span> </div>
|
||||
<div class="line"><a id="l00103" name="l00103"></a><span class="lineno"> 103</span>} <span class="comment">// namespace ripple</span></div>
|
||||
<div class="line"><a id="l00104" name="l00104"></a><span class="lineno"> 104</span> </div>
|
||||
<div class="line"><a id="l00105" name="l00105"></a><span class="lineno"> 105</span><span class="preprocessor">#endif</span></div>
|
||||
<div class="line"><a id="l00103" name="l00103"></a><span class="lineno"> 103</span><span class="preprocessor">#endif</span></div>
|
||||
<div class="ttc" id="aclassripple_1_1XRPAmount_html"><div class="ttname"><a href="classripple_1_1XRPAmount.html">ripple::XRPAmount</a></div><div class="ttdef"><b>Definition:</b> <a href="XRPAmount_8h_source.html#l00039">XRPAmount.h:43</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1base__uint_html"><div class="ttname"><a href="classripple_1_1base__uint.html">ripple::base_uint< 256 ></a></div></div>
|
||||
<div class="ttc" id="aduration_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/chrono/duration.html">std::chrono::duration</a></div></div>
|
||||
<div class="ttc" id="ainteger_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/types/integer.html">std::uint32_t</a></div></div>
|
||||
<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="algorithm_8h_source.html#l00026">algorithm.h:26</a></div></div>
|
||||
<div class="ttc" id="anamespaceripple_html_a022d9bbb24b2a476e64e282e9876ca93"><div class="ttname"><a href="namespaceripple.html#a022d9bbb24b2a476e64e282e9876ca93">ripple::deserializePrefixedHeader</a></div><div class="ttdeci">LedgerHeader deserializePrefixedHeader(Slice data, bool hasHash=false)</div><div class="ttdoc">Deserialize a ledger header (prefixed with 4 bytes) from a byte array.</div><div class="ttdef"><b>Definition:</b> <a href="libxrpl_2protocol_2LedgerHeader_8cpp_source.html#l00066">libxrpl/protocol/LedgerHeader.cpp:66</a></div></div>
|
||||
<div class="ttc" id="anamespaceripple_html_a02bb3582ce5e2941c4b4dcea4586db72"><div class="ttname"><a href="namespaceripple.html#a02bb3582ce5e2941c4b4dcea4586db72">ripple::getCloseAgree</a></div><div class="ttdeci">bool getCloseAgree(LedgerHeader const &info)</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00087">LedgerHeader.h:87</a></div></div>
|
||||
<div class="ttc" id="anamespaceripple_html_a8b2f5b67f10875b32c833c88f3bbb07f"><div class="ttname"><a href="namespaceripple.html#a8b2f5b67f10875b32c833c88f3bbb07f">ripple::sLCF_NoConsensusTime</a></div><div class="ttdeci">static std::uint32_t const sLCF_NoConsensusTime</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00084">LedgerHeader.h:84</a></div></div>
|
||||
<div class="ttc" id="anamespaceripple_html_a02bb3582ce5e2941c4b4dcea4586db72"><div class="ttname"><a href="namespaceripple.html#a02bb3582ce5e2941c4b4dcea4586db72">ripple::getCloseAgree</a></div><div class="ttdeci">bool getCloseAgree(LedgerHeader const &info)</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00085">LedgerHeader.h:85</a></div></div>
|
||||
<div class="ttc" id="anamespaceripple_html_a8b2f5b67f10875b32c833c88f3bbb07f"><div class="ttname"><a href="namespaceripple.html#a8b2f5b67f10875b32c833c88f3bbb07f">ripple::sLCF_NoConsensusTime</a></div><div class="ttdeci">static std::uint32_t const sLCF_NoConsensusTime</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00082">LedgerHeader.h:82</a></div></div>
|
||||
<div class="ttc" id="anamespaceripple_html_ad6ef4b359d5387fe20ce3ca7e3a293e7"><div class="ttname"><a href="namespaceripple.html#ad6ef4b359d5387fe20ce3ca7e3a293e7">ripple::addRaw</a></div><div class="ttdeci">void addRaw(LedgerHeader const &, Serializer &, bool includeHash=false)</div><div class="ttdef"><b>Definition:</b> <a href="libxrpl_2protocol_2LedgerHeader_8cpp_source.html#l00025">libxrpl/protocol/LedgerHeader.cpp:25</a></div></div>
|
||||
<div class="ttc" id="anamespaceripple_html_ae38c39246f1566a67d674d40ced5a30b"><div class="ttname"><a href="namespaceripple.html#ae38c39246f1566a67d674d40ced5a30b">ripple::deserializeHeader</a></div><div class="ttdeci">LedgerHeader deserializeHeader(Slice data, bool hasHash=false)</div><div class="ttdoc">Deserialize a ledger header from a byte array.</div><div class="ttdef"><b>Definition:</b> <a href="libxrpl_2protocol_2LedgerHeader_8cpp_source.html#l00042">libxrpl/protocol/LedgerHeader.cpp:42</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html"><div class="ttname"><a href="structripple_1_1LedgerHeader.html">ripple::LedgerHeader</a></div><div class="ttdoc">Information about the notional ledger backing the view.</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00033">LedgerHeader.h:34</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_a03771f954fb5b32e330aec50ae5a87de"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#a03771f954fb5b32e330aec50ae5a87de">ripple::LedgerHeader::LedgerHeader</a></div><div class="ttdeci">LedgerHeader()=default</div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_a233e04cfeb4d879ab8517d8aabb7e38b"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#a233e04cfeb4d879ab8517d8aabb7e38b">ripple::LedgerHeader::seq</a></div><div class="ttdeci">LedgerIndex seq</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00041">LedgerHeader.h:41</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_a3f117cf9d4ccb20b5ba15d8639540707"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#a3f117cf9d4ccb20b5ba15d8639540707">ripple::LedgerHeader::closeTime</a></div><div class="ttdeci">NetClock::time_point closeTime</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00074">LedgerHeader.h:74</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_a7b0160181d5c07888cfd7f13e31e7567"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#a7b0160181d5c07888cfd7f13e31e7567">ripple::LedgerHeader::accepted</a></div><div class="ttdeci">bool accepted</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00062">LedgerHeader.h:62</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_a9808a73e7430aff3c1590d4ae552f620"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#a9808a73e7430aff3c1590d4ae552f620">ripple::LedgerHeader::closeFlags</a></div><div class="ttdeci">int closeFlags</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00065">LedgerHeader.h:65</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_ab0b35abca886a06b38eead7b84cba8c3"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#ab0b35abca886a06b38eead7b84cba8c3">ripple::LedgerHeader::closeTimeResolution</a></div><div class="ttdeci">NetClock::duration closeTimeResolution</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00068">LedgerHeader.h:68</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_a3f117cf9d4ccb20b5ba15d8639540707"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#a3f117cf9d4ccb20b5ba15d8639540707">ripple::LedgerHeader::closeTime</a></div><div class="ttdeci">NetClock::time_point closeTime</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00072">LedgerHeader.h:72</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_a7b0160181d5c07888cfd7f13e31e7567"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#a7b0160181d5c07888cfd7f13e31e7567">ripple::LedgerHeader::accepted</a></div><div class="ttdeci">bool accepted</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00060">LedgerHeader.h:60</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_a9808a73e7430aff3c1590d4ae552f620"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#a9808a73e7430aff3c1590d4ae552f620">ripple::LedgerHeader::closeFlags</a></div><div class="ttdeci">int closeFlags</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00063">LedgerHeader.h:63</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_ab0b35abca886a06b38eead7b84cba8c3"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#ab0b35abca886a06b38eead7b84cba8c3">ripple::LedgerHeader::closeTimeResolution</a></div><div class="ttdeci">NetClock::duration closeTimeResolution</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00066">LedgerHeader.h:66</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_ab8fd6d4be4001febfe6f2e2b399dfa48"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#ab8fd6d4be4001febfe6f2e2b399dfa48">ripple::LedgerHeader::parentHash</a></div><div class="ttdeci">uint256 parentHash</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00052">LedgerHeader.h:52</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_acbaff4abb7243e02f45e63bd19843aa9"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#acbaff4abb7243e02f45e63bd19843aa9">ripple::LedgerHeader::parentCloseTime</a></div><div class="ttdeci">NetClock::time_point parentCloseTime</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00042">LedgerHeader.h:42</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_ad05c30cddf4e01a449adfa855fdb8b7d"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#ad05c30cddf4e01a449adfa855fdb8b7d">ripple::LedgerHeader::drops</a></div><div class="ttdeci">XRPAmount drops</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00054">LedgerHeader.h:54</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_ae2df468f2563d420131543e27231491d"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#ae2df468f2563d420131543e27231491d">ripple::LedgerHeader::accountHash</a></div><div class="ttdeci">uint256 accountHash</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00051">LedgerHeader.h:51</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_ae9093d3962490ede02dd9da5eb597527"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#ae9093d3962490ede02dd9da5eb597527">ripple::LedgerHeader::txHash</a></div><div class="ttdeci">uint256 txHash</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00050">LedgerHeader.h:50</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_ae95b3432469ab4cdef2d0caeb40f98f4"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#ae95b3432469ab4cdef2d0caeb40f98f4">ripple::LedgerHeader::validated</a></div><div class="ttdeci">bool validated</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00061">LedgerHeader.h:61</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_ae95b3432469ab4cdef2d0caeb40f98f4"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#ae95b3432469ab4cdef2d0caeb40f98f4">ripple::LedgerHeader::validated</a></div><div class="ttdeci">bool validated</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00059">LedgerHeader.h:59</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1LedgerHeader_html_aed3c6b7c8a2f7b4815507ff942f94fa8"><div class="ttname"><a href="structripple_1_1LedgerHeader.html#aed3c6b7c8a2f7b4815507ff942f94fa8">ripple::LedgerHeader::hash</a></div><div class="ttdeci">uint256 hash</div><div class="ttdef"><b>Definition:</b> <a href="LedgerHeader_8h_source.html#l00049">LedgerHeader.h:49</a></div></div>
|
||||
<div class="ttc" id="atime_point_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/chrono/time_point.html">std::chrono::time_point</a></div></div>
|
||||
</div><!-- fragment --></div><!-- contents -->
|
||||
|
||||
Reference in New Issue
Block a user