Commit d8b44fe9 authored by Ikko Eltociear Ashimine's avatar Ikko Eltociear Ashimine Committed by GitHub

core-utils: fix typo in setupProxyContract.ts

implmentation -> implementation
parent 710ca379
......@@ -49,7 +49,7 @@ const setupProxyContract = async (
console.log(`Setting implementation to ${targetImplAddress}`)
// The signer needs to be the current admin, otherwise we don't have permission
// to update the implmentation or admin
// to update the implementation or admin
assert(
signerAddress === currentAdmin,
'the passed signer is not the admin, cannot update implementation'
......@@ -89,7 +89,7 @@ const setupProxyContract = async (
console.log(`Setting admin to ${targetProxyOwnerAddress}`)
// The signer needs to be the current admin, otherwise we don't have permission
// to update the implmentation or admin
// to update the implementation or admin
assert(
signerAddress === currentAdmin,
'proxyOwnerSigner is not the admin, cannot update admin'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment