Skip to content

Commit

Permalink
Fix GatewayPairStarts test-case (#1070)
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumagi authored and fassadlr committed Oct 12, 2022
1 parent 1c4181f commit 6c2ae61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public IActionResult VerboseAddressesBalancesData([FromBody] string addresses)
{
try
{
string[] addressesArray = addresses?.Split(',') ?? new string[] { };
string[] addressesArray = string.IsNullOrWhiteSpace(addresses) ? new string[] { } : addresses.Split(',');

this.logger.LogDebug("Asking data for {0} addresses.", addressesArray.Length);

Expand Down

0 comments on commit 6c2ae61

Please sign in to comment.