Skip to content

Commit f2919d3

Browse files
committed
algopy import specific
1 parent f35ec90 commit f2919d3

File tree

1 file changed

+7
-5
lines changed
  • projects/bay-workshop-2024/smart_contracts/personal_bank

1 file changed

+7
-5
lines changed

projects/bay-workshop-2024/smart_contracts/personal_bank/contract.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from algopy import *
1+
from algopy import ARC4Contract, LocalState, UInt64, Txn, Global, itxn, gtxn, arc4
22

33

44
class PersonalBank(ARC4Contract):
@@ -9,9 +9,9 @@ def __init__(self) -> None:
99

1010
@arc4.abimethod(allow_actions=["OptIn"])
1111
def opt_in_to_app(self) -> None:
12-
result , exists = self.optedIn.maybe(Txn.sender)
12+
result, exists = self.optedIn.maybe(Txn.sender)
1313
assert not exists, "User already opted in"
14-
14+
1515
self.balance[Txn.sender] = UInt64(0)
1616
self.optedIn[Txn.sender] = True
1717
self.depositors += 1
@@ -23,7 +23,9 @@ def deposit(self, ptxn: gtxn.PaymentTransaction) -> UInt64:
2323
ptxn.receiver == Global.current_application_address
2424
), "Deposit receiver must be the contract address"
2525
assert ptxn.sender == Txn.sender, "Deposit sender must be the caller"
26-
assert Txn.sender.is_opted_in(Global.current_application_id), "Deposit sender must opt-in to the app first."
26+
assert Txn.sender.is_opted_in(
27+
Global.current_application_id
28+
), "Deposit sender must opt-in to the app first."
2729

2830
self.balance[Txn.sender] += ptxn.amount
2931
user_balance = self.balance[Txn.sender]
@@ -43,6 +45,6 @@ def withdraw(self) -> UInt64:
4345
fee=0,
4446
).submit()
4547

46-
self.depositors -= 1
48+
self.depositors -= 1
4749

4850
return userBalance

0 commit comments

Comments
 (0)