Skip to content

Commit

Permalink
Merge Consumer & Filler
Browse files Browse the repository at this point in the history
  • Loading branch information
hiveben committed Dec 6, 2024
1 parent aaaa2b5 commit 59383f8
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1169,10 +1169,7 @@ def load_remint_pfp(session, mint):

@catch_and_log()
def load_logprices(session, update, contract):
act = update['act']
data = act['data']
if 'data' in data:
data = data['data']
data = _get_data(update)

drop = load_transaction_basics(update)

Expand Down Expand Up @@ -5016,10 +5013,10 @@ def load_rwax_erasetoken(session, erase):
@catch_and_log()
def load_tag_filter(session, action):
act = action['act']
data = act['data']

data = _get_data(action)

action_name = act['name']
if 'data' in data:
data = data['data']

new_filter = load_transaction_basics(action)
new_filter['tag_id'] = data['tag_id']
Expand Down

0 comments on commit 59383f8

Please sign in to comment.