1
2
3
4
5
6
7
8
// Copyright 2020 ChainSafe Systems
// SPDX-License-Identifier: Apache-2.0

/// Bytes used to prefix the different numerical types in the encoding
pub const CODE_NEG_INT8: u8 = 0xff;
pub const CODE_INT16: u8 = 0xfe;
pub const CODE_INT32: u8 = 0xfd;
pub const CODE_INT64: u8 = 0xfc;