Skip to content

Commit

Permalink
fix old ignition script
Browse files Browse the repository at this point in the history
  • Loading branch information
doerfli committed Jun 17, 2024
1 parent b757bf3 commit ea119e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ignition/modules/Token.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import { buildModule } from "@nomicfoundation/hardhat-ignition/modules";
import LibraryModule from "./Libraries";

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

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

// m.call(apollo, "launch", []);
const ra = m.contract("RegistryAdmin", [],
{
libraries: {
TimestampLib: tslib,
TimestampLib: timestamplib,
RoleIdLib: roleIdLib
},
}
Expand Down

0 comments on commit ea119e0

Please sign in to comment.