Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
viraj124 committed Oct 25, 2024
1 parent 07fc082 commit ae2f174
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {

if (implementation === '')
throw new Error(
`Upgrade proposement failed for FuelERC20GatewayV4 proxy (${address})`
`Upgrade proposal failed for FuelERC20GatewayV4 proxy (${address})`
);

console.log(`Proposed FuelERC20GatewayV4 upgrade to ${implementation}`);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {

if (implementation === '')
throw new Error(
`Upgrade proposement failed for FuelMessagePortal proxy (${address})`
`Upgrade proposal failed for FuelMessagePortal proxy (${address})`
);

console.log('Proposed FuelMessagePortal upgrade to', implementation);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {

if (implementation === '')
throw new Error(
`Upgrade proposement failed for FuelChainState proxy (${contractDeployment.address})`
`Upgrade proposal failed for FuelChainState proxy (${contractDeployment.address})`
);

await save('FuelChainState', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {

if (implementation === '')
throw new Error(
`Upgrade proposement failed for FuelERC20GatewayV4 proxy (${contractDeployment.address})`
`Upgrade proposal failed for FuelERC20GatewayV4 proxy (${contractDeployment.address})`
);

await save('FuelERC20GatewayV4', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {

if (implementation === '')
throw new Error(
`Upgrade proposement failed for FuelMessagePortalV3 proxy (${contractDeployment.address})`
`Upgrade proposal failed for FuelMessagePortalV3 proxy (${contractDeployment.address})`
);

await save('FuelMessagePortalV3', {
Expand Down

0 comments on commit ae2f174

Please sign in to comment.