Skip to content

Commit

Permalink
remove CheckpointHelper (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptoAtwill authored Dec 1, 2023
1 parent d80a522 commit c0681dc
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 11 deletions.
1 change: 0 additions & 1 deletion scripts/deploy-gateway.template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ export async function deploy(libs: { [key in string]: string }) {
CrossMsgHelper: libs['CrossMsgHelper'],
SubnetIDHelper: libs['SubnetIDHelper'],
AccountHelper: libs['AccountHelper'],
CheckpointHelper: libs['CheckpointHelper'],
StorableMsgHelper: libs['StorableMsgHelper'],
}

Expand Down
8 changes: 0 additions & 8 deletions scripts/deploy-libraries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,9 @@ export async function deploy() {
},
txArgs,
)
const { address: checkpointHelperAddress } =
await deployContractWithDeployer(
deployer,
'CheckpointHelper',
{},
txArgs,
)

return {
AccountHelper: accountHelperAddress,
CheckpointHelper: checkpointHelperAddress,
SubnetIDHelper: subnetIDHelperAddress,
CrossMsgHelper: crossMsgHelperAddress,
StorableMsgHelper: storableMsgHelperAddress,
Expand Down
1 change: 0 additions & 1 deletion scripts/deploy-registry.template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export async function deploy() {
deployer,
'SubnetActorGetterFacet',
{
CheckpointHelper: LIBMAP['CheckpointHelper'],
SubnetIDHelper: LIBMAP['SubnetIDHelper'],
},
txArgs,
Expand Down
1 change: 0 additions & 1 deletion scripts/deploy-sa-diamond.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ async function deploySubnetActorDiamond(
}

const getterFacetLibs: Libraries = {
CheckpointHelper: libs['CheckpointHelper'],
SubnetIDHelper: libs['SubnetIDHelper'],
}

Expand Down

0 comments on commit c0681dc

Please sign in to comment.