We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b07c73e commit 640ff61Copy full SHA for 640ff61
convex_api/account.py
@@ -352,7 +352,7 @@ def public_key_checksum(self):
352
def create():
353
"""
354
355
- Create a new account with a random key and address.
+ Create a new account with a random key and an empty address.
356
357
:returns: New Account object
358
:rtype: Account
@@ -361,6 +361,8 @@ def create():
361
362
>>> # create an account with no address
363
>>> account = Account.create()
364
+ >> account.is_address
365
+ False
366
367
>>> # create two accounts with the same public/private keys
368
>>> account_1 = convex_api.create_account(account)
@@ -372,6 +374,7 @@ def create():
372
374
43
373
375
376
377
+
378
379
return Account(Ed25519PrivateKey.generate())
380
0 commit comments