Files
python-teos/apps/cli/blob.py
Sergi Delgado Segura 77b191dde2 Moves Logger to common
2019-12-16 14:15:30 +01:00

10 lines
225 B
Python

import re
class Blob:
def __init__(self, data):
if type(data) is not str or re.search(r"^[0-9A-Fa-f]+$", data) is None:
raise ValueError("Non-Hex character found in txid.")
self.data = data