Skip to content

Commit

Permalink
Properly load BLockchainObjects for Proposals
Browse files Browse the repository at this point in the history
  • Loading branch information
xeroc committed Dec 21, 2018
1 parent 3e6e357 commit 06e63bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphenecommon/proposal.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __init__(self, account, *args, **kwargs):

assert isinstance(account, str)
self.identifier = account
super().__init__(*args, **kwargs)
BlockchainObjects.__init__(self, account, *args, **kwargs)

def refresh(self, *args, **kwargs):
account = self.account_class(self.identifier)
Expand Down

0 comments on commit 06e63bb

Please sign in to comment.