Skip to content

Commit

Permalink
Simplify code
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Feb 26, 2019
1 parent 16fed69 commit f70ff90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ pair<evmc_status_code, vector<uint8_t>> callSystemContract(
if (result.release)
result.release(&result);

return make_pair(result.status_code, ret);
return {result.status_code, ret};
}

// Calls the Sentinel contract with input data @input.
Expand Down

0 comments on commit f70ff90

Please sign in to comment.