diff --git a/tipbot/modules/payment.py b/tipbot/modules/payment.py index 432624f..3e4c208 100644 --- a/tipbot/modules/payment.py +++ b/tipbot/modules/payment.py @@ -166,12 +166,12 @@ def RandomPaymentID(link,cmd): def Help(link): GetAccount(link.identity()) - link.send_private("You can send %s to your account:" % coinspecs.name); + link.send_private("You can send %s to your account using this address AND payment ID:" % coinspecs.name); address=GetTipbotAddress() or 'ERROR' link.send_private(" Address: %s" % address) if config.openalias_address != None: link.send_private(" (or %s when using OpenAlias)" % config.openalias_address) - link.send_private(" Main payment ID: %s" % GetPaymentID(link)) + link.send_private(" Use your primary payment ID: %s" % GetPaymentID(link)) link.send_private(" OR generate random payment ids at will with: !randompid") link.send_private("Incoming transactions are credited after %d confirmations" % config.payment_confirmations)