Skip to content

Commit ea119e0

Browse files
committed
fix old ignition script
1 parent b757bf3 commit ea119e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ignition/modules/Token.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ import { buildModule } from "@nomicfoundation/hardhat-ignition/modules";
22
import LibraryModule from "./Libraries";
33

44
export default buildModule("Token", (m) => {
5-
const { roleIdLib, tslib } = m.useModule(LibraryModule);
5+
const { roleIdLib, timestamplib } = m.useModule(LibraryModule);
66

77
const dip = m.contract("Dip", []);
88

99
// m.call(apollo, "launch", []);
1010
const ra = m.contract("RegistryAdmin", [],
1111
{
1212
libraries: {
13-
TimestampLib: tslib,
13+
TimestampLib: timestamplib,
1414
RoleIdLib: roleIdLib
1515
},
1616
}

0 commit comments

Comments
 (0)