1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-16 19:50:01 +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,4 +1,4 @@
#include <libeosio/base58.hpp>
#include <libantelope/base58.hpp>
#include <iostream>
#include <vector>
#include <doctest.h>
@ -28,7 +28,7 @@ TEST_CASE("base58::base58_encode") {
for(auto it = tests.begin(); it != tests.end(); it++) {
SUBCASE(it->name) {
CHECK( libeosio::base58_encode(it->in) == it->expected );
CHECK( libantelope::base58_encode(it->in) == it->expected );
}
}
}