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

Fix transactionbuilder for python 2.7

parent b36fe868
No related branches found
No related tags found
No related merge requests found
...@@ -291,7 +291,7 @@ class TransactionBuilder(dict): ...@@ -291,7 +291,7 @@ class TransactionBuilder(dict):
operations.default_prefix = self["blockchain"]["prefix"] operations.default_prefix = self["blockchain"]["prefix"]
try: try:
signedtx = Signed_Transaction(**self.json(), custom_chains=self.steem.custom_chains) signedtx = Signed_Transaction(**self.json().update(custom_chains=self.steem.custom_chains))
except: except:
raise ValueError("Invalid TransactionBuilder Format") raise ValueError("Invalid TransactionBuilder Format")
......
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