Skip to content

Commit

Permalink
Remove int type warning (#1793)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mixa84 authored Mar 3, 2023
1 parent 0f29d5d commit 5e3f1c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/masternodes/rpc_accounts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2018,7 +2018,7 @@ UniValue getburninfo(const JSONRPCRequest& request) {
public:
explicit WorkerResultPool(size_t size) {
pool.reserve(size);
for (auto i = 0; i < size; i++) {
for (size_t i = 0; i < size; i++) {
pool.push_back(CGetBurnInfoResult{});
}
}
Expand Down

0 comments on commit 5e3f1c7

Please sign in to comment.