Skip to content

Commit

Permalink
config value set as integer
Browse files Browse the repository at this point in the history
  • Loading branch information
eerkaijun committed Jan 14, 2024
1 parent a1208ce commit 486e06a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion account_abstraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def start_paymaster(config: Config):
"SIMPLE_ACCOUNT_FACTORY_ADDRESS": simple_account_factory_address,
"PAYMASTER_ADDRESS": paymaster_address,
"TIME_VALIDITY": str(config.paymaster_validity),
"INITIAL_DEPOSIT": config.paymaster_initial_deposit,
"INITIAL_DEPOSIT": str(config.paymaster_initial_deposit),
"PRIVATE_KEY": config.paymaster_key}

lib.run(
Expand Down
2 changes: 1 addition & 1 deletion config/account_abstraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class AccountAbstractionConfig:
def __init__(self):
super().__init__()

self.paymaster_initial_deposit = "3"
self.paymaster_initial_deposit = 3
"""
Initial deposit amount (in Ether) for the paymaster contract.
"""
Expand Down

0 comments on commit 486e06a

Please sign in to comment.