Skip to content

Commit e8b988f

Browse files
committed
chore: minor update to force pipeline
1 parent 64a0825 commit e8b988f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

examples/usdc/usdc.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
algorand = AlgorandClient.mainnet()
77

88
# The watermark is used to track how far the subscriber has processed transactions
9-
# In this example, we are starting at round 41651683
9+
# In this example, we are starting at round 41651683.
1010
watermark = 0
1111

1212

@@ -55,9 +55,7 @@ def print_usdc(transaction: SubscribedTransaction, filter_name: str) -> None:
5555
Here we are only using this EventListener callback for one filter, but if we had multiple filters we could use the filter name to determine which filter the transaction matched.
5656
"""
5757
axfer = transaction["asset-transfer-transaction"]
58-
print(
59-
f"{filter_name}: {transaction['sender']} sent {axfer['receiver']} {axfer['amount'] * 1e-6} USDC"
60-
)
58+
print(f"{filter_name}: {transaction['sender']} sent {axfer['receiver']} {axfer['amount'] * 1e-6} USDC")
6159

6260

6361
subscriber.on("usdc", print_usdc)

0 commit comments

Comments
 (0)