Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
elmato committed Sep 6, 2023
1 parent ab0d990 commit 00f1133
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions contract/tests/basic_evm_tester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ namespace fc { namespace raw {
template<>
inline void unpack( datastream<const char*>& ds, evm_test::partial_account_table_row& tmp)
{ try {
dlog("enrtro en partial_account_table_row unpack");
fc::raw::unpack(ds, tmp.id);
fc::raw::unpack(ds, tmp.eth_address);
fc::raw::unpack(ds, tmp.nonce);
Expand Down Expand Up @@ -594,8 +593,6 @@ bool basic_evm_tester::scan_account_code(std::function<bool(account_code)> visit
return true;
}

//TODO: remove when merging
//---begin
balance_and_dust basic_evm_tester::inevm() const {
return fc::raw::unpack<balance_and_dust>(get_row_by_account(evm_account_name, evm_account_name, "inevm"_n, "inevm"_n));
}
Expand Down Expand Up @@ -639,6 +636,5 @@ void basic_evm_tester::check_balances() {
throw std::runtime_error("evm_eos_balance != total_in_accounts+total_in_evm_accounts");
}
}
//---end

} // namespace evm_test
3 changes: 0 additions & 3 deletions contract/tests/basic_evm_tester.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,13 +289,10 @@ class basic_evm_tester : public testing::validating_tester
bool scan_gcstore(std::function<bool(gcstore)> visitor) const;
bool scan_account_code(std::function<bool(account_code)> visitor) const;

//TODO: remove before merge
//---begin
balance_and_dust inevm() const;
asset get_eos_balance( const account_name& act );
void scan_balances(std::function<bool(evm_test::vault_balance_row)> visitor) const;
void check_balances();
//---end

};

Expand Down

0 comments on commit 00f1133

Please sign in to comment.