mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-04 09:16:47 +00:00
refactor: Remove erroneous base_uint ctor from container (#46)
This commit is contained in:
@@ -323,7 +323,7 @@ calcNodeID(PublicKey const& pk)
|
||||
|
||||
ripesha_hasher h;
|
||||
h(pk.data(), pk.size());
|
||||
return NodeID{static_cast<ripesha_hasher::result_type>(h)};
|
||||
return NodeID::fromRaw(static_cast<ripesha_hasher::result_type>(h));
|
||||
}
|
||||
|
||||
} // namespace ripple
|
||||
|
||||
Reference in New Issue
Block a user