Skip to content

Commit

Permalink
Fix unexisting attribute (#1341)
Browse files Browse the repository at this point in the history
  • Loading branch information
werew authored and disconnect3d committed Jan 14, 2019
1 parent ea01069 commit 35be876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manticore/ethereum/manticore.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def get_code(self, address, state_id=None):
def last_return(self, state_id=None):
""" Last returned buffer for state `state_id` """
state = self.load(state_id)
return state.platform.last_return_data
return state.platform.last_transaction.return_data

def transactions(self, state_id=None):
""" Transactions list for state `state_id` """
Expand Down

0 comments on commit 35be876

Please sign in to comment.