mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-25 08:00:22 +00:00
14 lines
229 B
C++
14 lines
229 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
namespace xrpl {
|
|
|
|
/**
|
|
* Storage for linear binary data.
|
|
* Blocks of binary data appear often in various idioms and structures.
|
|
*/
|
|
using Blob = std::vector<unsigned char>;
|
|
|
|
} // namespace xrpl
|