Skip to content

Commit

Permalink
Version 7.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasFlamel1 committed May 31, 2023
1 parent a7db617 commit 641e6a8
Show file tree
Hide file tree
Showing 3 changed files with 8,492 additions and 1,849 deletions.
Binary file modified glyphs/icon_epic_cash.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions test/functional_tests/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ async function getApplicationInformationTest(hardwareWallet) {
const applicationNameLength = response[1];

// Get application name from the response
const applicationName = (new TextDecoder()).decode(response.subarray(2, 2 + applicationNameLength));
const applicationName = (new TextDecoder("utf-8", {"fatal": true})).decode(response.subarray(2, 2 + applicationNameLength));

// Log application name
console.log("Application name: " + applicationName);
Expand All @@ -680,7 +680,7 @@ async function getApplicationInformationTest(hardwareWallet) {
const applicationVersionLength = response[2 + applicationNameLength];

// Get application version from the response
const applicationVersion = (new TextDecoder()).decode(response.subarray(2 + applicationNameLength + 1, 2 + applicationNameLength + 1 + applicationVersionLength));
const applicationVersion = (new TextDecoder("utf-8", {"fatal": true})).decode(response.subarray(2 + applicationNameLength + 1, 2 + applicationNameLength + 1 + applicationVersionLength));

// Log application version
console.log("Application version: " + applicationVersion);
Expand Down Expand Up @@ -917,7 +917,7 @@ async function getAddressTest(hardwareWallet, extendedPrivateKey, addressType) {
]));

// Remove response code from response
response = (new TextDecoder()).decode(response.subarray(0, response["length"] - RESPONSE_DELIMITER_LENGTH));
response = (new TextDecoder("utf-8", {"fatal": true})).decode(response.subarray(0, response["length"] - RESPONSE_DELIMITER_LENGTH));

// Log address
console.log("Address: " + response);
Expand Down
Loading

0 comments on commit 641e6a8

Please sign in to comment.