1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-16 03:34:56 +02:00

src/base58.cpp: need to include cstdint for uint8_t type

This commit is contained in:
Henrik Hautakoski 2023-08-16 15:49:12 +02:00
parent cadb1ff984
commit 11e086ee12

View file

@ -25,6 +25,7 @@
* Based on code from https://github.com/bitcoin/bitcoin/blob/f1e2f2a85962c1664e4e55471061af0eaa798d40/src/base58.cpp
*/
#include <algorithm>
#include <cstdint>
#include <cstddef>
#include <cassert>
#include <cstring>