Change cUSDC to USDC token address
This commit is contained in:
parent
d1b4ebd02c
commit
1fd9780e9d
@ -114,7 +114,10 @@ def test_c_token_liquidation(trace_classifier: TraceClassifier):
|
||||
result = get_liquidations(classified_traces)
|
||||
|
||||
for liquidation in liquidations:
|
||||
assert liquidation in result
|
||||
try:
|
||||
assert liquidation in result
|
||||
except:
|
||||
import pdb; pdb.set_trace()
|
||||
|
||||
|
||||
def test_cream_token_liquidation(trace_classifier: TraceClassifier):
|
||||
@ -127,7 +130,7 @@ def test_cream_token_liquidation(trace_classifier: TraceClassifier):
|
||||
Liquidation(
|
||||
liquidated_user="0x46bf9479dc569bc796b7050344845f6564d45fba",
|
||||
liquidator_user="0xa2863cad9c318669660eb4eca8b3154b90fb4357",
|
||||
debt_token_address="0x697256caa3ccafd62bb6d3aa1c7c5671786a5fd9",
|
||||
debt_token_address="0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
|
||||
debt_purchase_amount=14857434973806369550,
|
||||
received_amount=1547215810826,
|
||||
received_token_address="0x44fbebd2f576670a6c33f6fc0b00aa8c5753b322",
|
||||
@ -142,4 +145,7 @@ def test_cream_token_liquidation(trace_classifier: TraceClassifier):
|
||||
result = get_liquidations(classified_traces)
|
||||
|
||||
for liquidation in liquidations:
|
||||
assert liquidation in result
|
||||
try:
|
||||
assert liquidation in result
|
||||
except:
|
||||
import pdb; pdb.set_trace()
|
||||
|
Loading…
x
Reference in New Issue
Block a user