Skip to content

Commit

Permalink
Add OpenExo and Rutanio network packages to indexer
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreb committed Sep 17, 2020
1 parent 58c46b0 commit d99774a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 6 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,22 @@ docker pull blockcore/indexer:latest
docker pull blockcore/indexer:0.0.6
```

## Troubleshooting


```
StatusCode = Unauthorized Error = Blockcore.Indexer.Client.BitcoinClientException: StatusCode='Unauthorized' Error=Error (0)
at Blockcore.Indexer.Client.BitcoinClient.HandleError(String body, HttpResponseMessage response, Nullable`1 statusCode) in /home/runner/work/blockcore-indexer/blockcore-indexer/src/Blockcore.Indexer/Client/BitcoinClient.cs:line 617
```

Issue: This error log is often related to caller IP not being part of the "rpcallowip" list.


```
Blockcore.Indexer.Client.BitcoinCommunicationException: Daemon Failed Url = 'http://city-chain:4334/'
---> System.AggregateException: One or more errors occurred. (Connection refused)
---> System.Net.Http.HttpRequestException: Connection refused
---> System.Net.Sockets.SocketException (111): Connection refused
```

Issue: This happens when the DNS name is not accessible.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blockcoreindexer",
"version": "0.1.8",
"version": "0.1.9",
"license": "MIT",
"author": {
"name": "Blockcore",
Expand Down
12 changes: 7 additions & 5 deletions src/Blockcore.Indexer/Blockcore.Indexer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,21 @@
<ItemGroup>
<PackageReference Include="Blockcore.NBitcoin" Version="1.0.*" />
<PackageReference Include="Blockcore.Networks.Bitcoin" Version="1.0.*" />
<PackageReference Include="Blockcore.Networks.OpenExo" Version="1.0.*" />
<PackageReference Include="Blockcore.Networks.Rutanio" Version="1.0.*" />
<PackageReference Include="Blockcore.Networks.Stratis" Version="1.0.*" />
<PackageReference Include="Blockcore.Networks.x42" Version="1.0.*" />
<PackageReference Include="Blockcore.Networks.Xds" Version="1.0.*" />
<PackageReference Include="Blockcore.Networks.City" Version="1.0.*" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.8" />
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
<PackageReference Include="MongoDB.Driver" Version="2.10.4" />
<PackageReference Include="MongoDB.Driver" Version="2.11.2" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="5.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Newtonsoft" Version="5.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="5.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.1" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="5.6.1" />
<PackageReference Include="Swashbuckle.AspNetCore.Newtonsoft" Version="5.6.1" />
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="5.6.1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit d99774a

Please sign in to comment.