Skip to content

Commit

Permalink
Release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
Smrecz committed Apr 11, 2023
1 parent d2671b4 commit 5d206e3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.2
1.3.3
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.3.3] - 2023.04.11

### Added

- RPC call capabilities for Open Network

## [1.3.2] - 2023.03.15

### Added
Expand Down
2 changes: 1 addition & 1 deletion Tatum/.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Tatum</id>
<version>1.3.2</version>
<version>1.3.3</version>
<authors>Tatum</authors>
<owners>Tatum</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down
7 changes: 3 additions & 4 deletions Tatum/TatumSdk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -345,11 +345,10 @@ public static async Task<TatumSdk> InitAsync(Network network, string apiKey, IHt

private static ITatumSdkConfiguration ResolveConfiguration(Network network, string apiKey, ITatumSdkConfiguration configuration)
{
if (configuration == null)
{
configuration = new DefaultTatumSdkConfiguration();
}
configuration ??= new DefaultTatumSdkConfiguration();

configuration.Rpc ??= new DefaultRpcConfiguration();

configuration.BaseUrl = TatumConstants.BaseUrl;
configuration.Network = network;
configuration.ApiKey = apiKey;
Expand Down

0 comments on commit 5d206e3

Please sign in to comment.