From 450a3fa8cc15b2254b30c70c3f6384a1261f2a29 Mon Sep 17 00:00:00 2001 From: curly60e <55191248+curly60e@users.noreply.github.com> Date: Tue, 26 May 2020 19:08:32 -0300 Subject: [PATCH] Message Signature change --- apisnd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apisnd.py b/apisnd.py index 683789c..4d2268e 100644 --- a/apisnd.py +++ b/apisnd.py @@ -12,7 +12,7 @@ def apisender(): ) url = 'https://api.blockstream.space/order' message = input("\nInsert your Message: ") - sentby = "... Message sent from PyBlock." + sentby = "...PyBLOCK." print("ATENTION: Minimum amount for sending a text is 5000 MSats") amountmsat = input("\nInsert the amount in MSats: ") curl = 'curl -F ' "bid={} ".format(amountmsat) + '-F ' + ' "message=' + message + sentby + '" ' + url