Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
omahs authored Sep 30, 2024
1 parent 717ccec commit 54975b3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions client/py_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,22 +266,22 @@ def purge_community_ceremony(self, cid, from_cindex, to_cindex, pay_fees_in_cc=F
ret = self.run_cli_command(["purge-community-ceremony", str(from_cindex), str(to_cindex)], cid, pay_fees_in_cc)
return ret.stdout.decode("utf-8").strip()

def create_faucet(self, account, facuet_name, amount, drip_amount, whitelist, cid=None, pay_fees_in_cc=False):
ret = self.run_cli_command(["create-faucet", account, facuet_name, str(amount), str(drip_amount)] + whitelist,
def create_faucet(self, account, faucet_name, amount, drip_amount, whitelist, cid=None, pay_fees_in_cc=False):
ret = self.run_cli_command(["create-faucet", account, faucet_name, str(amount), str(drip_amount)] + whitelist,
cid, pay_fees_in_cc)
return ret.stdout.decode("utf-8").strip()

def drip_faucet(self, account, facuet_account, cindex, cid=None, pay_fees_in_cc=False):
ret = self.run_cli_command(["drip-faucet", account, facuet_account, str(cindex)], cid, pay_fees_in_cc)
def drip_faucet(self, account, faucet_account, cindex, cid=None, pay_fees_in_cc=False):
ret = self.run_cli_command(["drip-faucet", account, faucet_account, str(cindex)], cid, pay_fees_in_cc)
return ret.stdout.decode("utf-8").strip()

def dissolve_faucet(self, account, facuet_account, beneficiary, cid=None, pay_fees_in_cc=False):
ret = self.run_cli_command(["dissolve-faucet", "--signer", account, facuet_account, beneficiary], cid,
def dissolve_faucet(self, account, faucet_account, beneficiary, cid=None, pay_fees_in_cc=False):
ret = self.run_cli_command(["dissolve-faucet", "--signer", account, faucet_account, beneficiary], cid,
pay_fees_in_cc)
return ret.stdout.decode("utf-8").strip()

def close_faucet(self, account, facuet_account, cid=None, pay_fees_in_cc=False):
ret = self.run_cli_command(["close-faucet", account, facuet_account], cid, pay_fees_in_cc)
def close_faucet(self, account, faucet_account, cid=None, pay_fees_in_cc=False):
ret = self.run_cli_command(["close-faucet", account, faucet_account], cid, pay_fees_in_cc)
return ret.stdout.decode("utf-8").strip()

def set_faucet_reserve_amount(self, account, amount, cid=None, pay_fees_in_cc=False):
Expand Down

0 comments on commit 54975b3

Please sign in to comment.