Skip to content

Commit f1ae7d6

Browse files
authored
Merge branch 'master' into feature/enumerable-extended
2 parents c72ccc6 + 9393147 commit f1ae7d6

7 files changed

Lines changed: 3628 additions & 4787 deletions

File tree

contracts/mocks/BlockhashMock.sol

Lines changed: 0 additions & 9 deletions
This file was deleted.

contracts/mocks/Stateless.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {Arrays} from "../utils/Arrays.sol";
99
import {AuthorityUtils} from "../access/manager/AuthorityUtils.sol";
1010
import {Base64} from "../utils/Base64.sol";
1111
import {BitMaps} from "../utils/structs/BitMaps.sol";
12+
import {Blockhash} from "../utils/Blockhash.sol";
1213
import {Bytes} from "../utils/Bytes.sol";
1314
import {CAIP2} from "../utils/CAIP2.sol";
1415
import {CAIP10} from "../utils/CAIP10.sol";

contracts/utils/Base64.sol

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,7 @@ library Base64 {
7272
mstore(afterPtr, 0x00)
7373

7474
// Run over the input, 3 bytes at a time
75-
for {
76-
77-
} lt(dataPtr, endPtr) {
78-
79-
} {
75+
for {} lt(dataPtr, endPtr) {} {
8076
// Advance 3 bytes
8177
dataPtr := add(dataPtr, 3)
8278
let input := mload(dataPtr)

0 commit comments

Comments
 (0)