MCPcopy Create free account
hub / github.com/albertobsd/keyhunt / isValidBase58String

Function isValidBase58String

keyhunt_legacy.cpp:6314–6321  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6312}
6313
6314bool isValidBase58String(char *str) {
6315 int len = strlen(str);
6316 bool continuar = true;
6317 for (int i = 0; i < len && continuar; i++) {
6318 continuar = isBase58(str[i]);
6319 }
6320 return continuar;
6321}
6322
6323bool processOneVanity() {
6324 int i,k;

Callers 3

keyhunt_legacy.cppFile · 0.70
readFileVanityFunction · 0.70
forceReadFileAddressFunction · 0.70

Calls 1

isBase58Function · 0.70

Tested by

no test coverage detected