1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use super::super::{components::SolFnTable, contracts::preludes::*};
use cfx_parameters::internal_contract_addresses::*;
use cfx_types::Address;
use cfx_vm_types::Spec;
use primitives::BlockNumber;

// Set the internal contract addresses to be activated in the future. So we can
// update the hardcoded test mode genesis state  without waiting for the
// implementation of each contract.
make_solidity_contract! {
    pub(super) struct Reserved3(RESERVED3, "placeholder");
}

make_solidity_contract! {
    pub(super) struct Reserved8(RESERVED8, "placeholder");
}
make_solidity_contract! {
    pub(super) struct Reserved9(RESERVED9, "placeholder");
}
make_solidity_contract! {
    pub(super) struct Reserved11(RESERVED11, "placeholder");
}