Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tests/ragger/test_gcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def test_gcs_nft(firmware: Firmware,
"data": data,
"chainId": 1
}
with app_client.sign("m/44'/60'/0'/0/0", tx_params, SignMode.STORE):
with app_client.sign("m/44'/60'/0'/0/0", tx_params, mode=SignMode.STORE):
pass

fields = [
Expand Down Expand Up @@ -272,7 +272,7 @@ def test_gcs_poap(firmware: Firmware,
response = app_client.provide_tx_simulation(simu_params)
assert response.status == StatusWord.OK

with app_client.sign("m/44'/60'/0'/0/0", tx_params, SignMode.STORE):
with app_client.sign("m/44'/60'/0'/0/0", tx_params, mode=SignMode.STORE):
pass

fields = [
Expand Down Expand Up @@ -451,7 +451,7 @@ def test_gcs_1inch(firmware: Firmware,
"data": data,
"chainId": 1
}
with app_client.sign("m/44'/60'/0'/0/0", tx_params, SignMode.STORE):
with app_client.sign("m/44'/60'/0'/0/0", tx_params, mode=SignMode.STORE):
pass

fields = [
Expand Down Expand Up @@ -608,7 +608,7 @@ def test_gcs_proxy(firmware: Firmware,
"data": data,
"chainId": 1
}
with app_client.sign("m/44'/60'/0'/0/0", tx_params, SignMode.STORE):
with app_client.sign("m/44'/60'/0'/0/0", tx_params, mode=SignMode.STORE):
pass

fields = [
Expand Down Expand Up @@ -720,7 +720,7 @@ def test_gcs_4226(firmware: Firmware,
"data": data,
"chainId": 1
}
with app_client.sign("m/44'/60'/0'/0/0", tx_params, SignMode.STORE):
with app_client.sign("m/44'/60'/0'/0/0", tx_params, mode=SignMode.STORE):
pass

swell_token_addr = bytes.fromhex("0a6e7ba5042b38349e437ec6db6214aec7b35676")
Expand Down
Loading