Skip to content

Commit

Permalink
Forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
janbro committed Nov 16, 2024
1 parent d4f5df2 commit fe01b35
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/PoC.sol
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ contract PoC is Test, Tokens {
string memory template;
if (logLevel == 1) {
template = string.concat("%s\t|\t", symbol, "\t|\t%s.%s");
console.log(template, address(tokensBalance[_user][_index][j].token), integer_part, fractional_part_string);
console.log(
template, address(tokensBalance[_user][_index][j].token), integer_part, fractional_part_string
);
} else if (logLevel == 0) {
template = string.concat("--- ", symbol, " balance of [%s]:\t%s.%s", " ---");
console.log(template, resolvedAddress, integer_part, fractional_part_string);
Expand Down

0 comments on commit fe01b35

Please sign in to comment.