mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
fixed API build error
This commit is contained in:
parent
49173da84d
commit
404f21ea76
@ -53,7 +53,8 @@ namespace api
|
||||
|
||||
i2p::client::ClientDestination * CreateLocalDestination (bool isPublic, i2p::data::SigningKeyType sigType)
|
||||
{
|
||||
auto localDestination = new i2p::client::ClientDestination (isPublic, sigType);
|
||||
i2p::data::PrivateKeys keys = i2p::data::PrivateKeys::CreateRandomKeys (sigType);
|
||||
auto localDestination = new i2p::client::ClientDestination (keys, isPublic);
|
||||
localDestination->Start ();
|
||||
return localDestination;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user