trailofbits/manticore
在 GitHub 查看Feature request: Automatic conversion of tx.return_data
Open
#1,595 创建于 2020年1月23日
ethereumhelp wantedidea
仓库指标
- Star
- (3,469 star)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
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.