Skip to content

Commit

Permalink
Merge pull request #2403 from AntelopeIO/uint128array_true_lowest_50
Browse files Browse the repository at this point in the history
[5.0] fix `true_lowest()` for `uint128[2]` index; possibly resolving some secondary table row RPC queries
  • Loading branch information
spoonincode authored Aug 20, 2024
2 parents 9fb5719 + c302253 commit fffa3d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ namespace eosio { namespace chain {
using value_type = std::array<uint128_t, N>;

static value_type true_lowest() {
value_type arr;
value_type arr = {};
return arr;
}

Expand Down

0 comments on commit fffa3d5

Please sign in to comment.