Skip to content

Commit f5530be

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

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/usdc/usdc.py

Lines changed: 4 additions & 2 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,7 +55,9 @@ 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(f"{filter_name}: {transaction['sender']} sent {axfer['receiver']} {axfer['amount'] * 1e-6} USDC")
58+
print(
59+
f"{filter_name}: {transaction['sender']} sent {axfer['receiver']} {axfer['amount'] * 1e-6} USDC"
60+
)
5961

6062

6163
subscriber.on("usdc", print_usdc)

0 commit comments

Comments
 (0)