From d7970444d7b9b602b55aa67f5e593d41e97d12cf Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Tue, 13 Jun 2023 17:20:04 +0200 Subject: [PATCH] blockchair.com -> blockcypher.com moins de pubs --- dogetipbot_telegram.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dogetipbot_telegram.py b/dogetipbot_telegram.py index 0aef8d5..5f388c3 100755 --- a/dogetipbot_telegram.py +++ b/dogetipbot_telegram.py @@ -218,7 +218,7 @@ async def dogetip(update: Update, context: CallbackContext): "🚀 Transaction effectuée 🚀\n\n" + f"{str(montant)} DOGE\n" + f"@{update.message.from_user.username} → @{destinataire}\n\n" - + f'Voir la transaction' + + f'Voir la transaction' ) await context.bot.send_message( @@ -283,7 +283,7 @@ async def withdraw(update: Update, context: CallbackContext): chat_id=update.message.chat_id, parse_mode=ParseMode.MARKDOWN, text="Transaction effectuée !\n" - + f"[tx](https://blockchair.com/dogecoin/transaction/{txid})", + + f"[tx](https://live.blockcypher.com/doge/tx/{txid})", ) @@ -292,7 +292,7 @@ async def users(update: Update, context: CallbackContext): reply = "" for user in query: reply += ( - f"\n{repr(user)}\thttps://blockchair.com/dogecoin/address/{user.address}" + f"\n{repr(user)}\thttps://live.blockcypher.com/doge/address/{user.address}" ) await update.message.reply_text(reply)