This commit is contained in:
drethereum 2023-11-16 09:29:54 -07:00
parent 6906310939
commit 73ce2f0fca

View File

@ -181,6 +181,8 @@ def transform(events: dict):
{% macro create_udf_base58() %}
import base58
def base58_decode_handler(input):
if input is None:
return None
@ -189,5 +191,5 @@ def base58_decode_handler(input):
return decoded_bytes.decode('utf-8')
except Exception as e:
return str(e)
{% endmacro %}