Make unit tests on native possible

This commit is contained in:
Djuri 2023-11-28 02:05:04 +01:00
parent 98c036f9e3
commit f05b848030
6 changed files with 69 additions and 42 deletions

View file

@ -2,9 +2,10 @@
#include <string>
#include <cmath>
#include <cstdint>
int modulo(int x,int N);
double getSupplyAtBlock(uint blockNr);
double getSupplyAtBlock(std::uint32_t blockNr);
std::string formatNumberWithSuffix(int64_t num);
std::string formatNumberWithSuffix(std::uint64_t num);