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

Commit

Permalink
Merge pull request #39 from Zondax/dev
Browse files Browse the repository at this point in the history
Avoid version values > 255
  • Loading branch information
jleni authored Sep 1, 2020
2 parents e49c799 + 6d6e66a commit 707cfd5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Makefile.version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
APPVERSION_M=2
APPVERSION_N=2022
APPVERSION_N=22
APPVERSION_P=3
2 changes: 1 addition & 1 deletion app/src/coin.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ typedef enum {
// Coin Specific
#define PK_ADDRESS_TYPE COIN_ADDR_TYPE_KUSAMA
#define SUPPORTED_TX_VERSION LEDGER_MAJOR_VERSION
#define SUPPORTED_SPEC_VERSION LEDGER_MINOR_VERSION
#define SUPPORTED_SPEC_VERSION (2000+LEDGER_MINOR_VERSION)
#define SUPPORTED_MINIMUM_SPEC_VERSION 2008

#define COIN_AMOUNT_DECIMAL_PLACES 12
Expand Down
1 change: 0 additions & 1 deletion tests/printing_bytes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
#include "parser_impl.h"

using ::testing::TestWithParam;
using ::testing::Values;

typedef struct {
uint16_t pageSize;
Expand Down

0 comments on commit 707cfd5

Please sign in to comment.