From 54975b364a3bb6cb416ea766b734eadc6c4b9d6f Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Mon, 30 Sep 2024 09:04:48 +0200 Subject: [PATCH] fix typos --- client/py_client/client.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/client/py_client/client.py b/client/py_client/client.py index f63eb545..010b1151 100644 --- a/client/py_client/client.py +++ b/client/py_client/client.py @@ -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):