Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ftheirs committed Jun 11, 2024
1 parent 2e2f300 commit 9eb662f
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ cmake_policy(SET CMP0025 NEW)
cmake_policy(SET CMP0144 NEW)

set(HUNTER_STATUS_DEBUG ON)
set(HUNTER_TLS_VERIFY OFF)
set(HUNTER_TLS_VERIFY ON)

enable_testing()

Expand Down
2 changes: 1 addition & 1 deletion app/Makefile.version
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is the `transaction_version` field of `Runtime`
APPVERSION_M=26
# This is the `spec_version` field of `Runtime`
APPVERSION_N=1002005
APPVERSION_N=12005
# This is the patch version of this release
APPVERSION_P=0
4 changes: 3 additions & 1 deletion app/src/parser_impl_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
#include "substrate_types.h"
#include "substrate_dispatch.h"

#define SUPPORTED_SPEC_VERSION_V26 1002005

parser_error_t parser_init_context(parser_context_t *ctx,
const uint8_t *buffer,
uint16_t bufferSize) {
Expand Down Expand Up @@ -352,7 +354,7 @@ static parser_error_t _checkVersionsV26(parser_context_t *c) {
transactionVersion += (uint32_t) p[3] << 24u;

if (transactionVersion != (SUPPORTED_TX_VERSION_CURRENT) ||
specVersion != SUPPORTED_SPEC_VERSION) {
specVersion != SUPPORTED_SPEC_VERSION_V26) {
return parser_tx_version_not_supported;
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/substrate/substrate_types.c
Original file line number Diff line number Diff line change
Expand Up @@ -4545,7 +4545,7 @@ parser_error_t _toStringPercent(
uint8_t pageIdx,
uint8_t* pageCount)
{
char bufferUI[50];
char bufferUI[60];
char bufferRatio[50];

uint64_to_str(bufferRatio, sizeof(bufferRatio), v->value);
Expand Down
Binary file modified tests_zemu/snapshots/s-mainmenu/00004.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 tests_zemu/snapshots/s-mainmenu/00010.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 tests_zemu/snapshots/sp-mainmenu/00004.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 tests_zemu/snapshots/sp-mainmenu/00010.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 tests_zemu/snapshots/st-mainmenu/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 tests_zemu/snapshots/x-mainmenu/00004.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 tests_zemu/snapshots/x-mainmenu/00010.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9eb662f

Please sign in to comment.