trailofbits/manticore
View on GitHubFeature request: Automatic conversion of tx.return_data
Open
#1595 opened on Jan 23, 2020
ethereumhelp wantedidea
Description
Currently, to retrieve the return value of a transaction, we need to do
balance_raw = transaction.return_data
balance = ABI.deserialize("uint", balance_raw)
It would be nice to have a transaction's property that deserializes automatically the data, given the function's signature.