提交 bb873659 编写于 作者: K Kevin Heifner

Add missing setcode #172

上级 941ac456
......@@ -70,6 +70,7 @@ types::Abi native_contract_chain_initializer::eos_contract_abi()
eos_abi.actions.push_back( types::Action{Name("okproducer"), "okproducer"} );
eos_abi.actions.push_back( types::Action{Name("setproducer"), "setproducer"} );
eos_abi.actions.push_back( types::Action{Name("setproxy"), "setproxy"} );
eos_abi.actions.push_back( types::Action{Name("setcode"), "setcode"} );
eos_abi.actions.push_back( types::Action{Name("linkauth"), "linkauth"} );
eos_abi.actions.push_back( types::Action{Name("unlinkauth"), "unlinkauth"} );
eos_abi.actions.push_back( types::Action{Name("updateauth"), "updateauth"} );
......@@ -82,6 +83,7 @@ types::Abi native_contract_chain_initializer::eos_contract_abi()
eos_abi.structs.push_back( eos::types::GetStruct<eos::types::okproducer>::type() );
eos_abi.structs.push_back( eos::types::GetStruct<eos::types::setproducer>::type() );
eos_abi.structs.push_back( eos::types::GetStruct<eos::types::setproxy>::type() );
eos_abi.structs.push_back( eos::types::GetStruct<eos::types::setcode>::type() );
eos_abi.structs.push_back( eos::types::GetStruct<eos::types::updateauth>::type() );
eos_abi.structs.push_back( eos::types::GetStruct<eos::types::linkauth>::type() );
eos_abi.structs.push_back( eos::types::GetStruct<eos::types::unlinkauth>::type() );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册