Skip to content

Commit eb050b8

Browse files
committed
Fix global import
1 parent 54cdde0 commit eb050b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contracts/utils/structs/EnumerableSet.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
pragma solidity ^0.8.20;
66

7-
import "../cryptography/Hashes.sol";
7+
import {Hashes} from "../cryptography/Hashes.sol";
88

99
/**
1010
* @dev Library for managing

scripts/generate/templates/EnumerableSet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const { TYPES } = require('./EnumerableSet.opts');
55
const header = `\
66
pragma solidity ^0.8.20;
77
8-
import "../cryptography/Hashes.sol";
8+
import {Hashes} from "../cryptography/Hashes.sol";
99
1010
/**
1111
* @dev Library for managing

0 commit comments

Comments
 (0)