Skip to content

Commit

Permalink
[Bench] Use PIVX address in Base58Decode test
Browse files Browse the repository at this point in the history
  • Loading branch information
random-zebra committed May 28, 2020
1 parent 5a1be90 commit 3f3edde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bench/base58.cpp
Expand Up @@ -45,7 +45,7 @@ static void Base58CheckEncode(benchmark::State& state)

static void Base58Decode(benchmark::State& state)
{
const char* addr = "17VZNX1SN5NtKa8UQFxwQbFeFc3iqRYhem";
const char* addr = "D6ytFXbsnEh7Y8NKgo84KA5yD8Uk4YnBdE";
std::vector<unsigned char> vch;
while (state.KeepRunning()) {
DecodeBase58(addr, vch);
Expand Down

0 comments on commit 3f3edde

Please sign in to comment.