mirror of
https://github.com/eosswedenorg/libantelope
synced 2026-06-17 20:10:03 +02:00
include/libeosio/base58.hpp: Change decode function to accept vector instead of string.
This commit is contained in:
parent
ed59959b5b
commit
a99a23ae9b
3 changed files with 8 additions and 6 deletions
|
|
@ -39,10 +39,12 @@ TEST_CASE("base58_decode") {
|
|||
for(tests::const_iterator it = input.begin(); it != input.end(); it++) {
|
||||
|
||||
SUBCASE(it->name.c_str()) {
|
||||
std::string result;
|
||||
std::vector<unsigned char> result;
|
||||
|
||||
std::vector<unsigned char> expectedOut(it->expectedOut.begin(), it->expectedOut.end());
|
||||
|
||||
CHECK( libeosio::base58_decode(it->in, result) == it->expectedReturn );
|
||||
CHECK( result == it->expectedOut );
|
||||
CHECK( result == expectedOut );
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue