OpenCBDC Transaction Processor
Loading...
Searching...
No Matches
uhs/twophase/locking_shard/messages.cpp
Go to the documentation of this file.
1// Copyright (c) 2021 MIT Digital Currency Initiative,
2// Federal Reserve Bank of Boston
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#include "messages.hpp"
7
8#include <tuple>
9
11 auto request::operator==(const request& rhs) const -> bool {
12 return std::tie(m_dtx_id, m_params)
13 == std::tie(rhs.m_dtx_id, rhs.m_params);
14 }
15}
auto operator==(const request &rhs) const -> bool