This repository was archived by the owner on Jul 27, 2021. It is now read-only.

Description
Hello,
Nice work by all contribs!
To get the lib working with carriota field HTTPS I had to modify:
private GenericIotaCoreApi.CreateBaseUrl() to:
private string CreateBaseUrl()
{
if(_host.Contains("http://") || _host.Contains("https://"))
{
return _host + ":" + _port;
}
return "http://" + _host + ":" + _port;
}
This allows http type to be optionally specified in the URL string of the main IotaApi constructor.