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

Commit

Permalink
Merge pull request #7389 from EOSIO/fix-dev-merge
Browse files Browse the repository at this point in the history
Fix develop merge
  • Loading branch information
heifner authored May 21, 2019
2 parents b316779 + 32e601e commit 72d1183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/chain_plugin/chain_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2240,7 +2240,7 @@ read_only::get_account_results read_only::get_account( const get_account_params&
t_id = d.find<chain::table_id_object, chain::by_code_scope_table>(boost::make_tuple( config::system_account_name, config::system_account_name, N(rexbal) ));
if (t_id != nullptr) {
const auto &idx = d.get_index<key_value_index, by_scope_primary>();
auto it = idx.find(boost::make_tuple( t_id->id, params.account_name ));
auto it = idx.find(boost::make_tuple( t_id->id, params.account_name.to_uint64_t() ));
if( it != idx.end() ) {
vector<char> data;
copy_inline_row(*it, data);
Expand Down

0 comments on commit 72d1183

Please sign in to comment.