Skip to content

Commit

Permalink
Merge pull request #317 from fioprotocol/release/3.1.x
Browse files Browse the repository at this point in the history
Release/3.1.x -> Master ( Mainnet Release )
  • Loading branch information
adsorptionenthalpy authored Oct 14, 2021
2 parents a5c0cf9 + afb3326 commit 62e7389
Show file tree
Hide file tree
Showing 6 changed files with 501 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ set(CMAKE_CXX_EXTENSIONS ON)
set(CXX_STANDARD_REQUIRED ON)

set(VERSION_MAJOR 3)
set(VERSION_MINOR 0)
set(VERSION_MINOR 1)
set(VERSION_PATCH 0)
#set(VERSION_SUFFIX develop)

Expand Down
7 changes: 3 additions & 4 deletions libraries/chain/controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1379,11 +1379,10 @@ namespace eosio {
a.contractname = "eosio.msig";
a.blocktimestamp = 1;
});
*/

*/
}


// The returned scoped_exit should not exceed the lifetime of the pending which existed when make_block_restore_point was called.
fc::scoped_exit<std::function<void()>> make_block_restore_point() {
Expand Down
2 changes: 1 addition & 1 deletion libraries/fc
9 changes: 9 additions & 0 deletions plugins/chain_api_plugin/chain_api_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ namespace eosio {
CHAIN_RO_CALL(get_whitelist, 200),
CHAIN_RO_CALL(check_whitelist, 200),
CHAIN_RO_CALL(get_sent_fio_requests, 200),
CHAIN_RO_CALL(get_nfts_fio_address, 200),
CHAIN_RO_CALL(get_nfts_hash, 200),
CHAIN_RO_CALL(get_nfts_contract, 200),
CHAIN_RW_CALL_ASYNC(push_block, chain_apis::read_write::push_block_results, 202),
CHAIN_RW_CALL_ASYNC(push_transaction,
chain_apis::read_write::push_transaction_results, 202),
Expand All @@ -134,6 +137,12 @@ namespace eosio {
chain_apis::read_write::send_transaction_results, 202),
CHAIN_RW_CALL_ASYNC(register_fio_address,
chain_apis::read_write::register_fio_address_results, 202),
CHAIN_RW_CALL_ASYNC(add_nft,
chain_apis::read_write::add_nft_results, 202),
CHAIN_RW_CALL_ASYNC(remove_nft,
chain_apis::read_write::remove_nft_results, 202),
CHAIN_RW_CALL_ASYNC(remove_all_nfts,
chain_apis::read_write::remove_all_nfts_results, 202),
CHAIN_RW_CALL_ASYNC(register_fio_domain,
chain_apis::read_write::register_fio_domain_results, 202),
CHAIN_RW_CALL_ASYNC(add_pub_address,
Expand Down
Loading

0 comments on commit 62e7389

Please sign in to comment.