cfx_executor/internal_contract/contracts/
future.rs

1use super::super::{components::SolFnTable, contracts::preludes::*};
2use cfx_parameters::internal_contract_addresses::*;
3use cfx_types::Address;
4use cfx_vm_types::Spec;
5use primitives::BlockNumber;
6
7// Set the internal contract addresses to be activated in the future. So we can
8// update the hardcoded test mode genesis state  without waiting for the
9// implementation of each contract.
10make_solidity_contract! {
11    pub(super) struct Reserved3(RESERVED3, "placeholder");
12}
13
14make_solidity_contract! {
15    pub(super) struct Reserved8(RESERVED8, "placeholder");
16}
17make_solidity_contract! {
18    pub(super) struct Reserved9(RESERVED9, "placeholder");
19}
20make_solidity_contract! {
21    pub(super) struct Reserved11(RESERVED11, "placeholder");
22}