fix: typo in binary_option.py (#2732)

Initalize -> Initialize
This commit is contained in:
Ikko Ashimine 2022-01-12 23:50:38 +09:00 committed by GitHub
parent 583afbd35f
commit 9dd61d84ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ class BinaryOption():
def initialize(self, api_endpoint, escrow_mint, decimals=2, skip_confirmation=True):
msg = ""
# Initalize Clinet
# Initialize Clinet
client = Client(api_endpoint)
msg += "Initialized client"
# Create account objects
@ -513,4 +513,4 @@ class BinaryOption():
)
except Exception as e:
msg += f" | ERROR: Encountered exception while attempting to send transaction: {e}"
raise(e)
raise(e)