OpenCBDC Transaction Processor
Loading...
Searching...
No Matches
header.hpp
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#ifndef OPENCBDC_TX_SRC_RPC_HEADER_H_
7#define OPENCBDC_TX_SRC_RPC_HEADER_H_
8
9#include <cstdint>
10
11namespace cbdc::rpc {
12 using request_id_type = uint64_t;
13
19}
20
21#endif
uint64_t request_id_type
Definition header.hpp:12
RPC request and response header.
Definition header.hpp:15
request_id_type m_request_id
Identifier for matching requests with responses.
Definition header.hpp:17