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

fixed again

parent 717e54d8
No related branches found
No related tags found
No related merge requests found
...@@ -26,8 +26,8 @@ class Testcases(unittest.TestCase): ...@@ -26,8 +26,8 @@ class Testcases(unittest.TestCase):
) )
# from getpass import getpass # from getpass import getpass
# self.bts.wallet.unlock(getpass()) # self.bts.wallet.unlock(getpass())
set_shared_steem_instance(self.bts) set_shared_steem_instance(bts)
self.bts.set_default_account("test") bts.set_default_account("test")
# bts.prefix ="STX" # bts.prefix ="STX"
tx = bts.transfer( tx = bts.transfer(
"test", 1.33, "SBD", memo="Foobar", account="test1") "test", 1.33, "SBD", memo="Foobar", account="test1")
...@@ -50,7 +50,8 @@ class Testcases(unittest.TestCase): ...@@ -50,7 +50,8 @@ class Testcases(unittest.TestCase):
) )
# from getpass import getpass # from getpass import getpass
# self.bts.wallet.unlock(getpass()) # self.bts.wallet.unlock(getpass())
set_shared_steem_instance(self.bts) set_shared_steem_instance(bts)
bts.set_default_account("test")
name = ''.join(random.choice(string.ascii_lowercase) for _ in range(12)) name = ''.join(random.choice(string.ascii_lowercase) for _ in range(12))
key1 = PrivateKey() key1 = PrivateKey()
key2 = PrivateKey() key2 = PrivateKey()
......
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