mirror of
https://github.com/matrix-construct/construct
synced 2024-12-25 23:14:13 +01:00
ircd:Ⓜ️:gossip: Fix attempt hash; msb on remote.
This commit is contained in:
parent
619430d07c
commit
3e2e876ebe
1 changed files with 2 additions and 2 deletions
|
@ -130,8 +130,8 @@ ircd::m::gossip::submit(const m::event::id &event_id,
|
|||
{
|
||||
const auto hash
|
||||
{
|
||||
(uint128_t(ircd::hash(remote)) << 64) |
|
||||
(uint128_t(ircd::hash(event_id)) >> 64)
|
||||
(uint128_t(ircd::hash(event_id)))
|
||||
| (uint128_t(ircd::hash(remote)) << 64)
|
||||
};
|
||||
|
||||
auto it
|
||||
|
|
Loading…
Reference in a new issue