Skip to content

Commit 7b26483

Browse files
committed
removed error catches
1 parent 8199b04 commit 7b26483

11 files changed

+1
-10
lines changed

bitsource.pyc

-929 Bytes
Binary file not shown.

config

-2
This file was deleted.

curl

Whitespace-only changes.

databases.pyc

717 Bytes
Binary file not shown.

leb128.pyc

-191 Bytes
Binary file not shown.

main.pyc

3.09 KB
Binary file not shown.

node.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
import os
44
from requests.auth import HTTPBasicAuth
55

6-
#url="blockway.asm.co"
7-
#url='385a0239.ngrok.com'
86
url=os.environ['node_url']
97
username=os.environ['node_username']
108
password=os.environ['node_password']

node.pyc

-63 Bytes
Binary file not shown.

transactions.pyc

669 Bytes
Binary file not shown.

workertasks.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,7 @@ def oa_in_block(blockn):
5353
oatxs=[]
5454
for x in opreturns:
5555
if x[1][0:2]=='OA':
56-
try:
57-
parsed=bitsource.parse_colored_tx(x[1], x[0])
58-
except:
59-
parsed="Invalid OA"
60-
print "error "+str(x[1])+" / "+str(x[0])
61-
56+
parsed=bitsource.parse_colored_tx(x[1], x[0])
6257
#take txhash, find address corresponding to parsed metadata colored behavior
6358

6459
oatxs.append([x[0],parsed,x[2]]) #TXHASH_WITH_INDEX, METADATA PARSED, BTC CONTENT, OUTPUT ADDRESSES as array

workertasks.pyc

584 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)