fibercrypto / libskyfiber-dotnet

Skycoin client libraries for .NET ( C# )
1 stars 4 forks source link

fixed#67 Test for wrapper for skycoin RestApi #68

Closed hsequeda closed 5 years ago

hsequeda commented 5 years ago

Fixes #67

Changes: -Created 25 tests: VersionTest, WalletSeedVerifyTest, InstanceTest, AddressCountTest, AddressUxoutsTest, BalanceGetTest, BalancePostTest, BlockTest, BlocksTest, CoinSupplyTest, DefaultConnectionsTest, BlockchainMetadataTest, BlockchainProgessTest, LastBlocksTest, HealthTest, NetworkConnectionsTest, NetworkConnectionsExchangeTest, NetworkConnectionsTrustTest, OutputsGetTest, OutputPostTest, TransactionsGetTest, TransactionsPostTest, PendingTxsTest, ResendUnconfirmedTxnsTest, RichlistTest. -Change parameters of OutputsPost, OutputPostWithHttpInfo, OutputsPostAsync, OutputsPostsAsyncWithHttpInfo methods from (string address=null,string hashes=null) to (Listaddress=null, Listhashes=null). -In the OutputsGetWithHttpInfo ,OutputsPostWithHttpInfo, OutputsGetAsyncWithHttpInfo and OutputsPostAsyncWithHttpInfo methods changed from : if (address != null) localVarQueryParams.AddRange(this.Configuration.ApiClient.ParameterToKeyValuePairs("multi", "address", address)); if (hash != null) localVarQueryParams.AddRange(this.Configuration.ApiClient.ParameterToKeyValuePairs("multi", "hash", hash)); to: if (address != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("", "addrs", string.Join(",", address))); if (hash != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("", "hashes", string.Join(",", hash))); .

Does this change need to mentioned in CHANGELOG.md?

Yes