Skip to content

Commit

Permalink
fixed readonly initialization (#58)
Browse files Browse the repository at this point in the history
Co-authored-by: Nida Karim Ali <[email protected]>
  • Loading branch information
NidaKarimAli and Nida Karim Ali authored Jan 8, 2024
1 parent bbba83e commit 03d31ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bluefin-exchange/bluefin-v2-client",
"version": "5.2.11",
"version": "5.2.12",
"description": "The Bluefin client Library allows traders to sign, create, retrieve and listen to orders on Bluefin Exchange.",
"main": "dist/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/bluefinClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ export class BluefinClient {
) {
this.initializeWithKeyPair(_account);
}
//In case of KMS Signer any of the above condition doesn't matches
else {
//In case of KMS Signer any of the above condition doesn't matches,
else if (_account) {
this.initializeWithKeyPair(_account as Signer);
}
}
Expand Down

0 comments on commit 03d31ca

Please sign in to comment.