-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [tests] add python linter * [pylint] add pylint dev routine - pre-commit - CI * Bump ledger-app-dev-tools version to 3.42.0 * [test] fix pytezos version for python 3.9 - fix pytezos version to the latest version compatible with python 3.9
- Loading branch information
Showing
570 changed files
with
800 additions
and
483 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[MESSAGES CONTROL] | ||
disable= | ||
broad-exception-caught, | ||
global-statement, | ||
line-too-long, | ||
protected-access, | ||
redefined-outer-name, | ||
too-few-public-methods, | ||
too-many-arguments, | ||
too-many-instance-attributes, | ||
too-many-positional-arguments, | ||
too-many-statements, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
import pytest | ||
# Copyright 2024 Trilitech <[email protected]> | ||
# Copyright 2024 Functori <[email protected]> | ||
|
||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
|
||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
"""Conftest base on `ragger` conftest.""" | ||
|
||
|
||
from pathlib import Path | ||
from typing import Dict, Generator, List, Union | ||
|
||
import pytest | ||
from ragger.firmware import Firmware | ||
from typing import Dict, Callable, Generator, List, Optional, Tuple, Union | ||
|
||
from utils.app import TezosAppScreen, SpeculosTezosBackend, DEFAULT_SEED | ||
from utils.backend import TezosBackend, APP_KIND | ||
from utils.backend import AppKind | ||
|
||
FIRMWARES: List[Firmware] = [ | ||
Firmware.NANOS, | ||
|
@@ -16,6 +34,7 @@ | |
DEVICES: List[str] = list(map(lambda fw: fw.device, FIRMWARES)) | ||
|
||
def pytest_addoption(parser): | ||
"""Register argparse-style options for pytest.""" | ||
parser.addoption("-D", "--device", | ||
type=str, | ||
choices=DEVICES, | ||
|
@@ -49,6 +68,7 @@ def pytest_addoption(parser): | |
global_log_dir: Union[Path, None] = None | ||
|
||
def pytest_configure(config): | ||
"""Configure pytest.""" | ||
global global_log_dir | ||
log_dir = config.getoption("log_dir") | ||
if log_dir is not None: | ||
|
@@ -57,21 +77,24 @@ def pytest_configure(config): | |
logs : Dict[str, List[pytest.TestReport]] = {} | ||
|
||
@pytest.hookimpl(tryfirst=True) | ||
def pytest_runtest_logstart(nodeid, location): | ||
def pytest_runtest_logstart(location): | ||
"""Called at the start of running the runtest protocol for a single item.""" | ||
logs[location[2]] = [] | ||
|
||
@pytest.hookimpl(tryfirst=True) | ||
def pytest_runtest_logreport(report): | ||
"""Called at the end of running the runtest protocol for a single test.""" | ||
logs[report.head_line].append(report) | ||
|
||
@pytest.hookimpl(tryfirst=True) | ||
def pytest_runtest_logfinish(nodeid, location): | ||
def pytest_runtest_logfinish(location): | ||
"""Called at the end of running the runtest protocol for a single item.""" | ||
if global_log_dir is not None: | ||
log_dir = global_log_dir / Path(location[0]).stem | ||
log_dir.mkdir(parents=True, exist_ok=True) | ||
head_line = location[2] | ||
log_file = log_dir / f"{head_line.replace(' ', '_')}.log" | ||
with open(log_file, 'w') as writer: | ||
with open(log_file, 'w', encoding="utf-8") as writer: | ||
for report in logs[head_line]: | ||
writer.write(f"============================== {report.when.capitalize()} {report.outcome} ==============================\n") | ||
writer.write(f"{report.longreprtext}\n") | ||
|
@@ -84,37 +107,44 @@ def pytest_runtest_logfinish(nodeid, location): | |
|
||
@pytest.fixture(scope="session") | ||
def firmware(pytestconfig) -> Firmware : | ||
"""Get `firware` for pytest.""" | ||
device = pytestconfig.getoption("device") | ||
return next(fw for fw in FIRMWARES if fw.device == device) | ||
|
||
@pytest.fixture(scope="session") | ||
def port(pytestconfig, request, worker_id) -> int : | ||
def port(pytestconfig, worker_id) -> int : | ||
"""Get `port` for pytest.""" | ||
if worker_id == "master": | ||
return pytestconfig.getoption("port") | ||
# worker_id = gw0, gw1, ... | ||
return 5000 + int(worker_id[2:]) | ||
|
||
@pytest.fixture(scope="session") | ||
def display(pytestconfig) -> bool : | ||
"""Get `display` for pytest.""" | ||
return pytestconfig.getoption("display") | ||
|
||
@pytest.fixture(scope="session") | ||
def golden_run(pytestconfig) -> bool: | ||
"""Get `golden_run` for pytest.""" | ||
return pytestconfig.getoption("golden_run") | ||
|
||
@pytest.fixture(scope="session") | ||
def app_path(pytestconfig) -> Path: | ||
"""Get `app_path` for pytest.""" | ||
return Path(pytestconfig.getoption("app")) | ||
|
||
@pytest.fixture(scope="session") | ||
def speculos_args(pytestconfig) -> List[str]: | ||
"""Get `app_path` for pytest.""" | ||
speculos_args = pytestconfig.getoption("speculos_args") | ||
if speculos_args is None: | ||
return [] | ||
return speculos_args.split() | ||
|
||
@pytest.fixture(scope="function") | ||
def seed(request) -> str: | ||
"""Get `seed` for pytest.""" | ||
param = getattr(request, "param", None) | ||
return param.get("seed", DEFAULT_SEED) if param else DEFAULT_SEED | ||
|
||
|
@@ -125,6 +155,7 @@ def backend(app_path: Path, | |
display: bool, | ||
seed: str, | ||
speculos_args: List[str]) -> Generator[SpeculosTezosBackend, None, None]: | ||
"""Get `backend` for pytest.""" | ||
|
||
if display: | ||
speculos_args += ["--display", "qt"] | ||
|
@@ -143,10 +174,12 @@ def backend(app_path: Path, | |
yield b | ||
|
||
@pytest.fixture(scope="function") | ||
def app(backend: SpeculosTezosBackend, golden_run: bool): | ||
return TezosAppScreen(backend, APP_KIND.WALLET, golden_run) | ||
def app(backend: SpeculosTezosBackend, golden_run: bool) -> TezosAppScreen: | ||
"""Get `app` for pytest.""" | ||
return TezosAppScreen(backend, AppKind.WALLET, golden_run) | ||
|
||
def requires_device(device): | ||
"""Wrapper to run the pytest test only with the provided device.""" | ||
return pytest.mark.skipif( | ||
f"config.getvalue('device') != '{ device }'", | ||
reason=f"Test requires device to be { device }." | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/settings_expert_mode_disabled.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/settings_expert_mode_enabled.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2 Bytes
(100%)
...n/nano/snapshots/nanosp/test_blindsign_reject/reject_from_blind/blind/00003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2 Bytes
(100%)
...n/nano/snapshots/nanosp/test_blindsign_reject/reject_from_blind/clear/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2 Bytes
(100%)
...n/nano/snapshots/nanosp/test_blindsign_reject/reject_from_blind/clear/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2 Bytes
(100%)
...n/nano/snapshots/nanosp/test_blindsign_reject/reject_from_blind/clear/00002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+3 Bytes
(100%)
...n/nano/snapshots/nanosp/test_blindsign_reject/reject_from_blind/clear/00003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1 Byte
(100%)
...n/nano/snapshots/nanosp/test_blindsign_reject/reject_from_blind/clear/00005.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2 Bytes
(100%)
...gration/nano/snapshots/nanosp/test_blindsign_reject/reject_from_clear/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2 Bytes
(100%)
...gration/nano/snapshots/nanosp/test_blindsign_reject/reject_from_clear/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2 Bytes
(100%)
...gration/nano/snapshots/nanosp/test_blindsign_reject/reject_from_clear/00002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+3 Bytes
(100%)
...gration/nano/snapshots/nanosp/test_blindsign_reject/reject_from_clear/00003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1 Byte
(100%)
...gration/nano/snapshots/nanosp/test_blindsign_reject/reject_from_clear/00005.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2 Bytes
(100%)
...gration/nano/snapshots/nanosp/test_blindsign_reject/reject_from_clear/00006.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+7 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_blindsign_too_deep/blind/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_blindsign_too_deep/clear/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_blindsign_too_deep/clear/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_blindsign_too_deep/clear/00002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_blindsign_too_deep/clear/00003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/test_blindsign_too_deep/clear/00005.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_blindsign_too_large/clear/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_blindsign_too_large/clear/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_blindsign_too_large/clear/00002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_blindsign_too_large/clear/00003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/test_blindsign_too_large/clear/00005.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_ensure_always_clearsign/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
tests/integration/nano/snapshots/nanosp/test_ensure_always_clearsign/00006.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_ensure_always_clearsign/00007.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_ensure_always_clearsign/00008.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_ensure_always_clearsign/00011.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...n/nano/snapshots/nanosp/test_nanosp_regression_potential_empty_screen/00002.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...n/nano/snapshots/nanosp/test_nanosp_regression_potential_empty_screen/00005.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...n/nano/snapshots/nanosp/test_nanosp_regression_potential_empty_screen/00007.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...n/nano/snapshots/nanosp/test_nanosp_regression_potential_empty_screen/00008.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
...n/nano/snapshots/nanosp/test_nanosp_regression_potential_empty_screen/00010.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...n/nano/snapshots/nanosp/test_nanosp_regression_potential_empty_screen/00011.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...n/nano/snapshots/nanosp/test_nanosp_regression_potential_empty_screen/00012.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
.../nanosp/test_nanosp_regression_press_right_works_across_apdu_recieves/00001.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
.../nanosp/test_nanosp_regression_press_right_works_across_apdu_recieves/00002.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
.../nanosp/test_nanosp_regression_press_right_works_across_apdu_recieves/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
.../nanosp/test_nanosp_regression_press_right_works_across_apdu_recieves/00004.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
.../nanosp/test_nanosp_regression_press_right_works_across_apdu_recieves/00005.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
.../nanosp/test_nanosp_regression_press_right_works_across_apdu_recieves/00006.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...n/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_at_the_end/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
...n/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_at_the_end/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...n/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_at_the_end/00007.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...n/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_at_the_end/00008.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...n/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_at_the_end/00010.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...n/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_at_the_end/00011.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...n/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_at_the_end/00012.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...n/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_at_the_end/00013.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...n/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_at_the_end/00015.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...n/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_at_the_end/00016.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...ation/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_inside/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
...ation/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_inside/00006.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...ation/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_inside/00007.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...ation/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_inside/00008.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...ation/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_inside/00009.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...ation/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_inside/00010.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...ation/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_inside/00012.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...ation/nano/snapshots/nanosp/test_parsing_errors/one_byte_added_inside/00013.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...ion/nano/snapshots/nanosp/test_parsing_errors/one_byte_removed_inside/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
...ion/nano/snapshots/nanosp/test_parsing_errors/one_byte_removed_inside/00006.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
...ion/nano/snapshots/nanosp/test_parsing_errors/one_byte_removed_inside/00007.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...ion/nano/snapshots/nanosp/test_parsing_errors/one_byte_removed_inside/00008.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...ion/nano/snapshots/nanosp/test_parsing_errors/one_byte_removed_inside/00009.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...ion/nano/snapshots/nanosp/test_parsing_errors/one_byte_removed_inside/00010.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...ion/nano/snapshots/nanosp/test_parsing_errors/one_byte_removed_inside/00011.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...ion/nano/snapshots/nanosp/test_parsing_errors/one_byte_removed_inside/00013.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...ion/nano/snapshots/nanosp/test_parsing_errors/one_byte_removed_inside/00014.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...gration/nano/snapshots/nanosp/test_parsing_errors/unknown_magic_bytes/00000.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...gration/nano/snapshots/nanosp/test_parsing_errors/unknown_magic_bytes/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...gration/nano/snapshots/nanosp/test_parsing_errors/unknown_magic_bytes/00002.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...gration/nano/snapshots/nanosp/test_parsing_errors/unknown_magic_bytes/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...gration/nano/snapshots/nanosp/test_parsing_errors/unknown_magic_bytes/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...gration/nano/snapshots/nanosp/test_parsing_errors/unknown_magic_bytes/00006.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...tegration/nano/snapshots/nanosp/test_parsing_errors/unknown_operation/00000.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...tegration/nano/snapshots/nanosp/test_parsing_errors/unknown_operation/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...tegration/nano/snapshots/nanosp/test_parsing_errors/unknown_operation/00002.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...tegration/nano/snapshots/nanosp/test_parsing_errors/unknown_operation/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...tegration/nano/snapshots/nanosp/test_parsing_errors/unknown_operation/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...tegration/nano/snapshots/nanosp/test_parsing_errors/unknown_operation/00006.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...tegration/nano/snapshots/nanosp/test_parsing_errors/wrong_last_packet/00002.png
Oops, something went wrong.
Binary file modified
BIN
+13 Bytes
(100%)
...tegration/nano/snapshots/nanosp/test_parsing_errors/wrong_last_packet/00006.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...tegration/nano/snapshots/nanosp/test_parsing_errors/wrong_last_packet/00007.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_provide_pk/bip32_ed25519/00000.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/test_provide_pk/bip32_ed25519/00001.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_provide_pk/ed25519/00000.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_provide_pk/ed25519/00001.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_provide_pk/secp256k1/00000.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_provide_pk/secp256r1/00000.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_provide_pk/secp256r1/00001.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
...pshots/nanosp/test_regression_continue_after_reject/reject_public_key/00000.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...pshots/nanosp/test_regression_continue_after_reject/reject_public_key/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...pshots/nanosp/test_regression_continue_after_reject/reject_public_key/00003.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...snapshots/nanosp/test_regression_continue_after_reject/reject_signing/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
...snapshots/nanosp/test_regression_continue_after_reject/reject_signing/00006.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...snapshots/nanosp/test_regression_continue_after_reject/reject_signing/00007.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...snapshots/nanosp/test_regression_continue_after_reject/reject_signing/00008.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...snapshots/nanosp/test_regression_continue_after_reject/reject_signing/00011.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...snapshots/nanosp/test_regression_continue_after_reject/reject_signing/00015.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_reject_pk/00000.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_reject_pk/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_reject_pk/00003.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_ballot/00002.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_complex_operation/00002.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_complex_operation/00007.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_complex_operation/00008.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_complex_operation/00011.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_complex_operation/00015.png
Oops, something went wrong.
Binary file modified
BIN
-8 Bytes
(99%)
tests/integration/nano/snapshots/nanosp/test_sign_complex_operation/00016.png
Oops, something went wrong.
Binary file modified
BIN
+8 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_complex_operation/00018.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_complex_operation/00019.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_delegation/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
tests/integration/nano/snapshots/nanosp/test_sign_delegation/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_failing_noop/00001.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_increase_paid_storage/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
tests/integration/nano/snapshots/nanosp/test_sign_increase_paid_storage/00006.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_origination/00002.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_origination/00007.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_proposals/00002.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
.../integration/nano/snapshots/nanosp/test_sign_register_global_constant/00002.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
.../integration/nano/snapshots/nanosp/test_sign_register_global_constant/00005.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_reveal/00002.png
Oops, something went wrong.
Binary file modified
BIN
+8 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_reveal/00005.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_sc_rollup_add_messages/00002.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...tion/nano/snapshots/nanosp/test_sign_sc_rollup_execute_outbox_message/00002.png
Oops, something went wrong.
Binary file modified
BIN
+13 Bytes
(100%)
...tion/nano/snapshots/nanosp/test_sign_sc_rollup_execute_outbox_message/00006.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...tion/nano/snapshots/nanosp/test_sign_sc_rollup_execute_outbox_message/00007.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...tion/nano/snapshots/nanosp/test_sign_sc_rollup_execute_outbox_message/00008.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...tion/nano/snapshots/nanosp/test_sign_sc_rollup_execute_outbox_message/00009.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...tion/nano/snapshots/nanosp/test_sign_sc_rollup_execute_outbox_message/00010.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...tion/nano/snapshots/nanosp/test_sign_sc_rollup_execute_outbox_message/00011.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...tion/nano/snapshots/nanosp/test_sign_sc_rollup_execute_outbox_message/00012.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
...tion/nano/snapshots/nanosp/test_sign_sc_rollup_execute_outbox_message/00013.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...tion/nano/snapshots/nanosp/test_sign_sc_rollup_originate/no_whitelist/00002.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...tion/nano/snapshots/nanosp/test_sign_sc_rollup_originate/no_whitelist/00006.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...on/nano/snapshots/nanosp/test_sign_sc_rollup_originate/with_whitelist/00002.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...on/nano/snapshots/nanosp/test_sign_sc_rollup_originate/with_whitelist/00006.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...on/nano/snapshots/nanosp/test_sign_sc_rollup_originate/with_whitelist/00014.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...on/nano/snapshots/nanosp/test_sign_sc_rollup_originate/with_whitelist/00015.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...on/nano/snapshots/nanosp/test_sign_sc_rollup_originate/with_whitelist/00016.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_set_consensus_key/00001.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_set_consensus_key/00002.png
Oops, something went wrong.
Binary file modified
BIN
+8 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_set_consensus_key/00005.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_set_deposit_limit/00001.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_set_deposit_limit/00002.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_set_deposit_limit/00005.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...sp/test_sign_too_long_operation/basic/accept/clear_n_too_long_warning/00002.png
Oops, something went wrong.
Binary file modified
BIN
+8 Bytes
(100%)
...sp/test_sign_too_long_operation/basic/accept/clear_n_too_long_warning/00005.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...sp/test_sign_too_long_operation/basic/accept/clear_n_too_long_warning/00007.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...sp/test_sign_too_long_operation/basic/accept/clear_n_too_long_warning/00012.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...sp/test_sign_too_long_operation/basic/accept/clear_n_too_long_warning/00013.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...sp/test_sign_too_long_operation/basic/accept/clear_n_too_long_warning/00015.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...sp/test_sign_too_long_operation/basic/accept/clear_n_too_long_warning/00016.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...no/snapshots/nanosp/test_sign_too_long_operation/basic/accept/summary/00003.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...n_too_long_operation/basic/reject_at_summary/clear_n_too_long_warning/00002.png
Oops, something went wrong.
Binary file modified
BIN
+8 Bytes
(100%)
...n_too_long_operation/basic/reject_at_summary/clear_n_too_long_warning/00005.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...n_too_long_operation/basic/reject_at_summary/clear_n_too_long_warning/00007.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...n_too_long_operation/basic/reject_at_summary/clear_n_too_long_warning/00012.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...n_too_long_operation/basic/reject_at_summary/clear_n_too_long_warning/00013.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...n_too_long_operation/basic/reject_at_summary/clear_n_too_long_warning/00015.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...n_too_long_operation/basic/reject_at_summary/clear_n_too_long_warning/00016.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...s/nanosp/test_sign_too_long_operation/basic/reject_at_summary/summary/00003.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...s/nanosp/test_sign_too_long_operation/basic/reject_at_summary/summary/00005.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
..._operation/basic/reject_at_too_large_warning/clear_n_too_long_warning/00002.png
Oops, something went wrong.
Binary file modified
BIN
+8 Bytes
(100%)
..._operation/basic/reject_at_too_large_warning/clear_n_too_long_warning/00005.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
..._operation/basic/reject_at_too_large_warning/clear_n_too_long_warning/00007.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
..._operation/basic/reject_at_too_large_warning/clear_n_too_long_warning/00012.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
..._operation/basic/reject_at_too_large_warning/clear_n_too_long_warning/00013.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
..._operation/basic/reject_at_too_large_warning/clear_n_too_long_warning/00015.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
..._operation/basic/reject_at_too_large_warning/clear_n_too_long_warning/00016.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
..._operation/basic/reject_at_too_large_warning/clear_n_too_long_warning/00017.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...st_sign_too_long_operation/only_transactions/clear_n_too_long_warning/00002.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...st_sign_too_long_operation/only_transactions/clear_n_too_long_warning/00008.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...st_sign_too_long_operation/only_transactions/clear_n_too_long_warning/00012.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...st_sign_too_long_operation/only_transactions/clear_n_too_long_warning/00013.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...st_sign_too_long_operation/only_transactions/clear_n_too_long_warning/00015.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...st_sign_too_long_operation/only_transactions/clear_n_too_long_warning/00016.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...ots/nanosp/test_sign_too_long_operation/too_large/accept/blindsigning/00001.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...st_sign_too_long_operation/too_large/accept/clear_n_too_large_warning/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...st_sign_too_long_operation/too_large/accept/clear_n_too_large_warning/00013.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...st_sign_too_long_operation/too_large/accept/clear_n_too_large_warning/00014.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...st_sign_too_long_operation/too_large/accept/clear_n_too_large_warning/00015.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...st_sign_too_long_operation/too_large/accept/clear_n_too_large_warning/00016.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...st_sign_too_long_operation/too_large/accept/clear_n_too_large_warning/00018.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...sign_too_long_operation/too_large/reject_at_blindsigning/blindsigning/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...sign_too_long_operation/too_large/reject_at_blindsigning/blindsigning/00003.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
..._operation/too_large/reject_at_blindsigning/clear_n_too_large_warning/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
..._operation/too_large/reject_at_blindsigning/clear_n_too_large_warning/00013.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
..._operation/too_large/reject_at_blindsigning/clear_n_too_large_warning/00014.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
..._operation/too_large/reject_at_blindsigning/clear_n_too_large_warning/00015.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
..._operation/too_large/reject_at_blindsigning/clear_n_too_large_warning/00016.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
..._operation/too_large/reject_at_blindsigning/clear_n_too_large_warning/00018.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...ation/too_large/reject_at_too_large_warning/clear_n_too_large_warning/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...ation/too_large/reject_at_too_large_warning/clear_n_too_large_warning/00013.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...ation/too_large/reject_at_too_large_warning/clear_n_too_large_warning/00014.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...ation/too_large/reject_at_too_large_warning/clear_n_too_large_warning/00015.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...ation/too_large/reject_at_too_large_warning/clear_n_too_large_warning/00016.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...ation/too_large/reject_at_too_large_warning/clear_n_too_large_warning/00018.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...ation/too_large/reject_at_too_large_warning/clear_n_too_large_warning/00019.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...ign_too_long_operation/without_fee_or_amount/clear_n_too_long_warning/00002.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...ign_too_long_operation/without_fee_or_amount/clear_n_too_long_warning/00006.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
...ign_too_long_operation/without_fee_or_amount/clear_n_too_long_warning/00008.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
...ign_too_long_operation/without_fee_or_amount/clear_n_too_long_warning/00010.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
...ign_too_long_operation/without_fee_or_amount/clear_n_too_long_warning/00011.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...ign_too_long_operation/without_fee_or_amount/clear_n_too_long_warning/00012.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...ign_too_long_operation/without_fee_or_amount/clear_n_too_long_warning/00013.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...ign_too_long_operation/without_fee_or_amount/clear_n_too_long_warning/00015.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...ign_too_long_operation/without_fee_or_amount/clear_n_too_long_warning/00016.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
...ots/nanosp/test_sign_too_long_operation/without_fee_or_amount/summary/00003.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/basic/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/basic/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/basic/00007.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/basic/00008.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/complex/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/complex/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/complex/00007.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/complex/00008.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
...ation/nano/snapshots/nanosp/test_sign_transaction/delegate_parameters/00006.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...ation/nano/snapshots/nanosp/test_sign_transaction/delegate_parameters/00007.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...ation/nano/snapshots/nanosp/test_sign_transaction/delegate_parameters/00008.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
...egration/nano/snapshots/nanosp/test_sign_transaction/finalize_unstake/00006.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...egration/nano/snapshots/nanosp/test_sign_transaction/finalize_unstake/00007.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/reject/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/reject/00006.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/reject/00007.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/reject/00008.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/reject/00011.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/reject/00015.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/simple/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/simple/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/stake/00006.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/stake/00007.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/unstake/00006.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transaction/unstake/00007.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transfer_ticket/00002.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transfer_ticket/00005.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transfer_ticket/00007.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transfer_ticket/00008.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
tests/integration/nano/snapshots/nanosp/test_sign_transfer_ticket/00010.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_transfer_ticket/00011.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_with_another_seed/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
tests/integration/nano/snapshots/nanosp/test_sign_with_another_seed/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_with_another_seed/00007.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_with_another_seed/00008.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_with_long_hash/00002.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_with_long_hash/00007.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_with_long_hash/00008.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_with_small_packet/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
tests/integration/nano/snapshots/nanosp/test_sign_with_small_packet/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_with_small_packet/00007.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanosp/test_sign_with_small_packet/00008.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanox/settings_expert_mode_disabled.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanox/settings_expert_mode_enabled.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...on/nano/snapshots/nanox/test_blindsign_reject/reject_from_blind/blind/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...on/nano/snapshots/nanox/test_blindsign_reject/reject_from_blind/clear/00000.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...on/nano/snapshots/nanox/test_blindsign_reject/reject_from_blind/clear/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...on/nano/snapshots/nanox/test_blindsign_reject/reject_from_blind/clear/00002.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...on/nano/snapshots/nanox/test_blindsign_reject/reject_from_blind/clear/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...on/nano/snapshots/nanox/test_blindsign_reject/reject_from_blind/clear/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...egration/nano/snapshots/nanox/test_blindsign_reject/reject_from_clear/00000.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
...egration/nano/snapshots/nanox/test_blindsign_reject/reject_from_clear/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...egration/nano/snapshots/nanox/test_blindsign_reject/reject_from_clear/00002.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...egration/nano/snapshots/nanox/test_blindsign_reject/reject_from_clear/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...egration/nano/snapshots/nanox/test_blindsign_reject/reject_from_clear/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
...egration/nano/snapshots/nanox/test_blindsign_reject/reject_from_clear/00006.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_blindsign_too_deep/blind/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_blindsign_too_deep/clear/00000.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_blindsign_too_deep/clear/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_blindsign_too_deep/clear/00002.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_blindsign_too_deep/clear/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanox/test_blindsign_too_deep/clear/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_blindsign_too_large/clear/00000.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_blindsign_too_large/clear/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_blindsign_too_large/clear/00002.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_blindsign_too_large/clear/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/integration/nano/snapshots/nanox/test_blindsign_too_large/clear/00005.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_ensure_always_clearsign/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(99%)
tests/integration/nano/snapshots/nanox/test_ensure_always_clearsign/00006.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_ensure_always_clearsign/00007.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_ensure_always_clearsign/00008.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
tests/integration/nano/snapshots/nanox/test_ensure_always_clearsign/00011.png
Oops, something went wrong.
Oops, something went wrong.