1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-17 12:00:02 +02:00

Change namespace and header guards from libeosio to libantelope

This commit is contained in:
Henrik Hautakoski 2023-04-06 14:23:05 +02:00
parent 0cfd459c71
commit 6824a2f49e
32 changed files with 176 additions and 176 deletions

View file

@ -1,5 +1,5 @@
#include <libeosio/WIF.hpp>
#include <libeosio/ec.hpp>
#include <libantelope/WIF.hpp>
#include <libantelope/ec.hpp>
#include <iostream>
#include <vector>
#include <doctest.h>
@ -8,7 +8,7 @@ TEST_CASE("WIF::wif_pub_decode [legacy]") {
struct testcase {
const char* name;
std::string key;
libeosio::ec_pubkey_t expected;
libantelope::ec_pubkey_t expected;
bool expectedRet;
};
@ -24,9 +24,9 @@ TEST_CASE("WIF::wif_pub_decode [legacy]") {
for(auto it = tests.begin(); it != tests.end(); it++) {
SUBCASE(it->name) {
libeosio::ec_pubkey_t result = { 0x0 };
libantelope::ec_pubkey_t result = { 0x0 };
CHECK( libeosio::wif_pub_decode(result, it->key) == it->expectedRet );
CHECK( libantelope::wif_pub_decode(result, it->key) == it->expectedRet );
CHECK( result == it->expected );
}
}
@ -36,7 +36,7 @@ TEST_CASE("WIF::wif_pub_decode [k1]") {
struct testcase {
const char* name;
std::string key;
libeosio::ec_pubkey_t expected;
libantelope::ec_pubkey_t expected;
bool expectedRet;
};
@ -52,9 +52,9 @@ TEST_CASE("WIF::wif_pub_decode [k1]") {
for(auto it = tests.begin(); it != tests.end(); it++) {
SUBCASE(it->name) {
libeosio::ec_pubkey_t result = { 0x0 };
libantelope::ec_pubkey_t result = { 0x0 };
CHECK( libeosio::wif_pub_decode(result, it->key) == it->expectedRet );
CHECK( libantelope::wif_pub_decode(result, it->key) == it->expectedRet );
CHECK( result == it->expected );
}
}