Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Add missing setcode #172
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Oct 9, 2017
1 parent 09153e8 commit a5d5f49
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,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"} );
Expand All @@ -78,6 +79,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() );
Expand Down

0 comments on commit a5d5f49

Please sign in to comment.