1 2 3 4 5 6 7 8 9 10
// Copyright (c) Aptos // SPDX-License-Identifier: Apache-2.0 //! This file contains models of the vm crate's dependencies for use with MIRAI. pub mod types { pub mod transaction { pub const MAX_TRANSACTION_SIZE_IN_BYTES: usize = 4096; } }