From d564619d7ee5223f68d2a5bb7a64a01d938e3483 Mon Sep 17 00:00:00 2001 From: Maria Shodunke Date: Wed, 16 Jul 2025 09:55:13 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Rome Reginelli --- _code-samples/claim-payment-channel/py/claim_pay_channel.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_code-samples/claim-payment-channel/py/claim_pay_channel.py b/_code-samples/claim-payment-channel/py/claim_pay_channel.py index 6c51eed203..310e9e2f1b 100644 --- a/_code-samples/claim-payment-channel/py/claim_pay_channel.py +++ b/_code-samples/claim-payment-channel/py/claim_pay_channel.py @@ -1,6 +1,6 @@ """ Create, claim and verify a Payment Channel. -Reference: https://xrpl.org/paychannel.html +Reference: https://xrpl.org/docs/references/protocol/ledger-data/ledger-entry-types/paychannel """ from xrpl.clients import JsonRpcClient from xrpl.models import ( @@ -18,6 +18,7 @@ from xrpl.account import get_balance client = JsonRpcClient("https://s.altnet.rippletest.net:51234") # Creating wallets as prerequisite +print("Setting up wallets...") wallet1 = generate_faucet_wallet(client) wallet2 = generate_faucet_wallet(client)