Skip to content
Snippets Groups Projects
Commit e3a08ac9 authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

more fixes

parent 7880285c
No related branches found
No related tags found
No related merge requests found
...@@ -216,7 +216,9 @@ class Account(BlockchainObject): ...@@ -216,7 +216,9 @@ class Account(BlockchainObject):
) )
if not mostrecent: if not mostrecent:
return return
if limit < 2:
yield mostrecent
return
first = int(mostrecent[0][0]) first = int(mostrecent[0][0])
while True: while True:
......
import logging import logging
import os import os
from graphenebase import bip38 from graphenebase import bip38
from steempybase.account import PrivateKey, GPHPrivateKey from beembase.account import PrivateKey, GPHPrivateKey
from .account import Account from .account import Account
from .exceptions import ( from .exceptions import (
KeyNotFound, KeyNotFound,
...@@ -27,7 +27,7 @@ class Wallet(): ...@@ -27,7 +27,7 @@ class Wallet():
Three wallet operation modes are possible: Three wallet operation modes are possible:
* **Wallet Database**: Here, steempy loads the keys from the * **Wallet Database**: Here, beem loads the keys from the
locally stored wallet SQLite database (see ``storage.py``). locally stored wallet SQLite database (see ``storage.py``).
To use this mode, simply call ``Steem()`` without the To use this mode, simply call ``Steem()`` without the
``keys`` parameter ``keys`` parameter
......
...@@ -7,11 +7,11 @@ These classes are very low level and are not well documented. ...@@ -7,11 +7,11 @@ These classes are very low level and are not well documented.
API API
--- ---
.. autoclass:: steempy.storage.DataDir .. autoclass:: beem.storage.DataDir
:members: :members:
.. autoclass:: steempy.storage.Key .. autoclass:: beem.storage.Key
:members: :members:
.. autoclass:: steempy.storage.MasterPassword .. autoclass:: beem.storage.MasterPassword
:members: :members:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment