Skip to content

Commit

Permalink
Merge pull request knowm#3974 from makarid/ftx-authentication-fix
Browse files Browse the repository at this point in the history
[Ftx] Fixing FtxDigest fail check
  • Loading branch information
earce authored Mar 9, 2021
2 parents d38eeb1 + a3df72b commit 375c309
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public String digestParams(RestInvocation restInvocation) {
+ restInvocation.getHttpMethod().toUpperCase()
+ restInvocation.getPath();

if(restInvocation.getQueryString() != null){
if(!restInvocation.getQueryString().isEmpty()){
message += "?"+restInvocation.getQueryString();
}

Expand Down

0 comments on commit 375c309

Please sign in to comment.