Skip to content

Commit

Permalink
Change issue_tokens variable type from auto to int64_t
Browse files Browse the repository at this point in the history
  • Loading branch information
aamirpashaa committed Dec 11, 2023
1 parent 3038257 commit d4d1823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/eosio.system/src/producer_pay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ namespace eosiosystem {

uint64_t now_ms = current_time_point().sec_since_epoch();
bool payouts_made = false;
auto new_tokens = 0;
int64_t new_tokens = 0;

for (auto itr = payouts.begin(); itr != payouts.end(); itr++)
{
Expand Down

0 comments on commit d4d1823

Please sign in to comment.