From 848c63bbde01f2cb267db61e4352c638b50a6e4c Mon Sep 17 00:00:00 2001 From: Mikal Villa Date: Fri, 2 Aug 2019 22:02:29 +0200 Subject: [PATCH] Fixed build error: BlindedPublicKey only takes ident as argument now. --- b33address.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b33address.cpp b/b33address.cpp index 554b793..01f0e9e 100644 --- a/b33address.cpp +++ b/b33address.cpp @@ -15,7 +15,7 @@ int main(int argc, char * argv[]) { if (ident->GetSigningKeyType () == i2p::data::SIGNING_KEY_TYPE_REDDSA_SHA512_ED25519) { - i2p::data::BlindedPublicKey blindedKey (ident, i2p::data::SIGNING_KEY_TYPE_REDDSA_SHA512_ED25519); + i2p::data::BlindedPublicKey blindedKey (ident); std::cout << "b33 address: " << blindedKey.ToB33 () << ".b32.i2p" << std::endl; std::cout << "Today's store hash: " << blindedKey.GetStoreHash ().ToBase64 () << std::endl; }