mirror of
https://github.com/Xahau/xahaud.git
synced 2026-06-04 01:06:37 +00:00
Hooks-chaining alpha
This is a squash of 241 commits from https://github.com/XRPL-Labs/xrpld-hooks/tree/hooks-chaining Ready for forward porting to rippled 1.8.3
This commit is contained in:
@@ -186,7 +186,10 @@ STObject::set(SerialIter& sit, int depth) noexcept(false)
|
||||
{
|
||||
JLOG(debugLog().error()) << "Unknown field: field_type=" << type
|
||||
<< ", field_name=" << field;
|
||||
Throw<std::runtime_error>("Unknown field");
|
||||
std::stringstream ss;
|
||||
ss << "Unknown field in Object t=" << type << " f=" << field;
|
||||
|
||||
Throw<std::runtime_error>(ss.str().c_str());
|
||||
}
|
||||
|
||||
// Unflatten the field
|
||||
|
||||
Reference in New Issue
Block a user