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

Explicitly throw away get_table_type return value for code clarity (more) #6319

Merged
merged 1 commit into from
Nov 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/chain_plugin/chain_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,7 @@ fc::variant read_only::get_currency_stats( const read_only::get_currency_stats_p
fc::mutable_variant_object results;

const abi_def abi = eosio::chain_apis::get_abi( db, p.code );
auto table_type = get_table_type( abi, "stat" );
(void)get_table_type( abi, "stat" );

uint64_t scope = ( eosio::chain::string_to_symbol( 0, boost::algorithm::to_upper_copy(p.symbol).c_str() ) >> 8 );

Expand Down