提交 de364bae 编写于 作者: A Anton Perkov

system contract test cleanup: N(eosio) replaced with eosio::system_account_name #3213

上级 20a59a2b
......@@ -76,16 +76,16 @@ public:
produce_blocks();
create_account_with_resources( N(alice1111111), N(eosio), core_from_string("1.0000"), false );
create_account_with_resources( N(bob111111111), N(eosio), core_from_string("0.4500"), false );
create_account_with_resources( N(carol1111111), N(eosio), core_from_string("1.0000"), false );
create_account_with_resources( N(alice1111111), config::system_account_name, core_from_string("1.0000"), false );
create_account_with_resources( N(bob111111111), config::system_account_name, core_from_string("0.4500"), false );
create_account_with_resources( N(carol1111111), config::system_account_name, core_from_string("1.0000"), false );
BOOST_REQUIRE_EQUAL( core_from_string("1000000000.0000"), get_balance( "eosio" ) );
}
void create_accounts_with_resources( vector<account_name> accounts, account_name creator = N(eosio) ) {
void create_accounts_with_resources( vector<account_name> accounts, account_name creator = config::system_account_name ) {
for( auto a : accounts ) {
create_account_with_resources( a, creator );
}
......@@ -106,13 +106,13 @@ public:
.active = authority( get_public_key( a, "active" ) )
});
trx.actions.emplace_back( get_action( N(eosio), N(buyrambytes), vector<permission_level>{{creator,config::active_name}},
trx.actions.emplace_back( get_action( config::system_account_name, N(buyrambytes), vector<permission_level>{{creator,config::active_name}},
mvo()
("payer", creator)
("receiver", a)
("bytes", ram_bytes) )
);
trx.actions.emplace_back( get_action( N(eosio), N(delegatebw), vector<permission_level>{{creator,config::active_name}},
trx.actions.emplace_back( get_action( config::system_account_name, N(delegatebw), vector<permission_level>{{creator,config::active_name}},
mvo()
("from", creator)
("receiver", a)
......@@ -148,14 +148,14 @@ public:
.active = authority( get_public_key( a, "active" ) )
});
trx.actions.emplace_back( get_action( N(eosio), N(buyram), vector<permission_level>{{creator,config::active_name}},
trx.actions.emplace_back( get_action( config::system_account_name, N(buyram), vector<permission_level>{{creator,config::active_name}},
mvo()
("payer", creator)
("receiver", a)
("quant", ramfunds) )
);
trx.actions.emplace_back( get_action( N(eosio), N(delegatebw), vector<permission_level>{{creator,config::active_name}},
trx.actions.emplace_back( get_action( config::system_account_name, N(delegatebw), vector<permission_level>{{creator,config::active_name}},
mvo()
("from", creator)
("receiver", a)
......@@ -171,7 +171,7 @@ public:
}
transaction_trace_ptr setup_producer_accounts( const std::vector<account_name>& accounts ) {
account_name creator(N(eosio));
account_name creator(config::system_account_name);
signed_transaction trx;
set_transaction_headers(trx);
asset cpu = core_from_string("80.0000");
......@@ -188,14 +188,14 @@ public:
.active = authority( get_public_key( a, "active" ) )
});
trx.actions.emplace_back( get_action( N(eosio), N(buyram), vector<permission_level>{ {creator, config::active_name} },
trx.actions.emplace_back( get_action( config::system_account_name, N(buyram), vector<permission_level>{ {creator, config::active_name} },
mvo()
("payer", creator)
("receiver", a)
("quant", ram) )
);
trx.actions.emplace_back( get_action( N(eosio), N(delegatebw), vector<permission_level>{ {creator, config::active_name} },
trx.actions.emplace_back( get_action( config::system_account_name, N(delegatebw), vector<permission_level>{ {creator, config::active_name} },
mvo()
("from", creator)
("receiver", a)
......@@ -387,14 +387,14 @@ public:
}
fc::variant get_global_state() {
vector<char> data = get_row_by_account( N(eosio), N(eosio), N(global), N(global) );
vector<char> data = get_row_by_account( config::system_account_name, config::system_account_name, N(global), N(global) );
if (data.empty()) std::cout << "\nData is empty\n" << std::endl;
return data.empty() ? fc::variant() : abi_ser.binary_to_variant( "eosio_global_state", data );
}
fc::variant get_refund_request( name account ) {
vector<char> data = get_row_by_account( N(eosio), account, N(refunds), account );
vector<char> data = get_row_by_account( config::system_account_name, account, N(refunds), account );
return data.empty() ? fc::variant() : abi_ser.binary_to_variant( "refund_request", data );
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册