From 9589dae3b535ead92735a20efb82edab72b668be Mon Sep 17 00:00:00 2001 From: root Date: Tue, 30 Mar 2021 18:02:24 +0000 Subject: [PATCH] add lastblock with time --- network.py | 13 +++++++------ trifling.py | 4 ++++ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/network.py b/network.py index 8fcb889..cd995e5 100644 --- a/network.py +++ b/network.py @@ -1,6 +1,7 @@ import sopel.module import requests import re +import time # networkurl = "http://node.marty.cf:18019/getinfo" # networkurl = "http://node.xmrbackb.one:18081/getinfo" @@ -8,7 +9,7 @@ import re # networkurl = "http://node.xmr.pt:18081/getinfo" networkurl = "http://node.supportxmr.com:18081/getinfo" -jsonurl = "http://node.supportxmr.com:18081/json_rpc" +jsonurl = "http://node1.keepitmonero.com:18089/json_rpc" headers = { 'Content-Type': 'application/json', } @@ -66,14 +67,14 @@ def mempool(bot, trigger): @sopel.module.commands('lastblock') def lastblock(bot, trigger): - try: - r=requests.get(lastblock) + #try: + # r=requests.get(lastblock) r=requests.post(jsonurl, headers=headers, data=requestdata) j=r.json() block=j['result']['block_header'] - bot.say("Last block height is {0} with {1} transactions".format(block['height'],block['num_txes'])) - except: - bot.say("Something borked o_O") + bot.say("Last block found {0:.2f} minutes ago with height {1} included {2} transactions".format((time.time() - float(block['timestamp']))/60, block['height'], block['num_txes'])) + #except: + # bot.say("Something borked o_O") @sopel.module.commands('blocksize') def blocksize(bot, trigger): diff --git a/trifling.py b/trifling.py index 742e36d..1023f38 100644 --- a/trifling.py +++ b/trifling.py @@ -18,6 +18,10 @@ def fourmatter(bot, trigger): # bot.say('sun is not doing allah is doing') # bot.say('to accept Islam say that i bear witness that there is no deity worthy of worship except Allah and Muhammad peace be upon him is his slave and messenger') +@sopel.module.commands('_.') +def faceflip(bot, trigger): + bot.say(':| .¯. |: ._. :| .¯. |: ._. :| .¯. |: ._.') + @sopel.module.commands('ada', 'hoskinson') def ada(bot, trigger): bot.say('DO YOU KNOW WHO I AM?')