refactor: Remove erroneous base_uint ctor from container (#46)

This commit is contained in:
Ayaz Salikhov
2026-04-09 16:08:17 +01:00
committed by Ed Hennis
parent 56a9d69bfb
commit 5aa3d5e231
13 changed files with 73 additions and 39 deletions

View File

@@ -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