Skip to content

Commit

Permalink
Re-format Base64.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
cairoeth committed Aug 22, 2024
1 parent 16b26dd commit 0c2941d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion contracts/utils/Base64.sol
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ library Base64 {
mstore(afterPtr, 0x00)

// Run over the input, 3 bytes at a time
for {} lt(dataPtr, endPtr) {} {
for {

} lt(dataPtr, endPtr) {

} {
// Advance 3 bytes
dataPtr := add(dataPtr, 3)
let input := mload(dataPtr)
Expand Down

0 comments on commit 0c2941d

Please sign in to comment.