Skip to content

Commit

Permalink
fix typo: SuperfluidGDAv1DeployerLibrary
Browse files Browse the repository at this point in the history
  • Loading branch information
hellwolf committed Feb 6, 2024
1 parent 7fcaaa4 commit a13ab58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ contract SuperfluidFrameworkDeploymentSteps {
SuperfluidPoolLogicDeployerLibrary.deploy(GeneralDistributionAgreementV1(address(0)));
SuperfluidUpgradeableBeacon superfluidPoolBeacon =
ProxyDeployerLibrary.deploySuperfluidUpgradeableBeacon(address(superfluidPoolLogic));
gdaV1Logic = SuperfluidGDAV1DeployerLibrary.deploy(host, superfluidPoolBeacon);
gdaV1Logic = SuperfluidGDAv1DeployerLibrary.deploy(host, superfluidPoolBeacon);
}

// we set the canonical address based on host.getAgreementClass() because
Expand Down Expand Up @@ -374,7 +374,7 @@ library SuperfluidPoolLogicDeployerLibrary {
}
}

library SuperfluidGDAV1DeployerLibrary {
library SuperfluidGDAv1DeployerLibrary {
function deploy(ISuperfluid host, SuperfluidUpgradeableBeacon superfluidPoolBeacon) external
returns (GeneralDistributionAgreementV1 gdaV1Logic)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ list_linked_libraries() {
jq -r '.bytecode.linkReferences | map(keys) | .[][]'
}

find build/foundry/out/ -name '*.json' | while read -r i;do
find build/foundry/ -name '*.json' | while read -r i;do
cat < "$i" | list_linked_libraries
done | sort | uniq

0 comments on commit a13ab58

Please sign in to comment.