Skip to content
Snippets Groups Projects
Commit 9c52d264 authored by Anthony Martin's avatar Anthony Martin
Browse files

fixes #151

parent 1ba03783
No related branches found
No related tags found
No related merge requests found
import unittest
import json
import shutil
from tinman import snapshot
from simple_steem_client.client import SteemRemoteBackend, SteemInterface, SteemRPCException
class SnapshotTest(unittest.TestCase):
def test_list_all_accounts(self):
backend = SteemRemoteBackend(nodes=["http://test.com"], appbase=True)
steemd = SteemInterface(backend)
self.assertIsNotNone(snapshot.list_all_accounts(steemd))
......@@ -13,6 +13,7 @@ from simple_steem_client.client import SteemRemoteBackend, SteemInterface, Steem
from . import __version__
DATABASE_API_SINGLE_QUERY_LIMIT = 1000
MAX_RETRY = 30
# Whitelist of exceptions from transaction source (Mainnet).
TRANSACTION_SOURCE_RETRYABLE_ERRORS = [
......
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