Skip to content

Commit

Permalink
Increased exp to be 55sec from iat instead of 20
Browse files Browse the repository at this point in the history
  • Loading branch information
pbereng authored Feb 20, 2020
1 parent ef72602 commit aab3fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fireblocks_sdk/sdk_token_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def sign_jwt(self, path, body_json=""):
"uri": path,
"nonce": timestamp_millisecs,
"iat": timestamp_secs,
"exp": timestamp_secs + 20,
"exp": timestamp_secs + 55,
"sub": self.api_key,
"bodyHash": sha256(json.dumps(body_json).encode("utf-8")).hexdigest()
}
Expand Down

0 comments on commit aab3fcd

Please sign in to comment.