Skip to content

Commit

Permalink
Merge pull request #1492 from AntelopeIO/dry_run_sign_compare
Browse files Browse the repository at this point in the history
fix sign-compare warning in dry_run_trx_tests
  • Loading branch information
spoonincode authored Aug 15, 2023
2 parents a5d8f72 + df31833 commit 72026c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittests/dry_run_trx_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ BOOST_FIXTURE_TEST_CASE(setabi_test, dry_run_trx_tester) { try {
send_action(act, true); // should not throw
const auto* accnt = control->db().template find<chain::account_object, chain::by_name>( "setabitest"_n );
BOOST_REQUIRE(accnt);
BOOST_TEST(accnt->abi.size() == 0); // no abi actually set
BOOST_TEST(accnt->abi.size() == 0u); // no abi actually set
} FC_LOG_AND_RETHROW() }

BOOST_FIXTURE_TEST_CASE(updateauth_test, dry_run_trx_tester) { try {
Expand Down

0 comments on commit 72026c4

Please sign in to comment.