Skip to content
This repository has been archived by the owner on May 31, 2022. It is now read-only.

Commit

Permalink
change pub for public_key on Signer
Browse files Browse the repository at this point in the history
  • Loading branch information
joshieDo committed Feb 26, 2022
1 parent f001641 commit 4654b51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion foundrydeploy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(
def get(self) -> str:
return f"{self.key_kind} {self.key_argument}"

def pub(self) -> str:
def public_key(self) -> str:
return self.pub


Expand Down
2 changes: 1 addition & 1 deletion foundrydeploy/deployer.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _handle_arg(self, arg: str) -> str:
arg = f"{self.addresses[contract_label]}"

elif arg.startswith("#PUB"):
arg = f"{self.signer.pub()}"
arg = f"{self.signer.public_key()}"

return arg

Expand Down

0 comments on commit 4654b51

Please sign in to comment.