Skip to content

Commit

Permalink
Merge pull request #37 from Zondax/zcash-stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosala committed Oct 11, 2022
2 parents 8979f20 + c92fbc3 commit 2fde8a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ jobs:
uses: actions/checkout@v2
with:
submodules: true
- name: Install deps
run: |
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10
brew install conan
conan config install https://github.com/conan-io/conanclientcert.git
- run: cmake -DCMAKE_BUILD_TYPE=Debug . && make

check_version:
Expand Down
2 changes: 1 addition & 1 deletion include/zxversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@

#define ZXLIB_MAJOR 14
#define ZXLIB_MINOR 1
#define ZXLIB_PATCH 0
#define ZXLIB_PATCH 1
2 changes: 2 additions & 0 deletions src/base58.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ int decode_base58(const char *in, size_t length,
int encode_base58(const unsigned char *in, size_t length,
unsigned char *out, size_t *outlen) {
unsigned char buffer[MAX_ENC_INPUT_SIZE * 138 / 100 + 1] = {0};
MEMZERO(out, *outlen);

size_t i, j;
size_t startAt, stopAt;
size_t zeroCount = 0;
Expand Down

0 comments on commit 2fde8a8

Please sign in to comment.