mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Fix logging transactions that throw
This commit is contained in:
@@ -217,6 +217,15 @@ public:
|
||||
return v.mData != mData;
|
||||
}
|
||||
|
||||
std::string getHex () const
|
||||
{
|
||||
std::stringstream h;
|
||||
h << std::hex << std::setfill ('0');
|
||||
for (unsigned char const& element : mData)
|
||||
h << std::setw (2) << element;
|
||||
return h.str ();
|
||||
}
|
||||
|
||||
// low-level VL length encode/decode functions
|
||||
static Blob encodeVL (int length);
|
||||
static int lengthVL (int length)
|
||||
|
||||
Reference in New Issue
Block a user