metaspartan / explorer

Ethereum Block Explorer (ETHExplorer V2) - Realtime Price Ticker, Shapeshift.io Integration, etc. (Project is currently not under active development, if you have a bug fix, please open a PR) My current project can be found at https://github.com/metaspartan/denarius (D a better cryptocurrency than ETH)
Other
486 stars 330 forks source link

Transactions invoked by contract are not showed #19

Open gaoxiangxyz opened 6 years ago

gaoxiangxyz commented 6 years ago

I write a contract as below ,deploy it in my private network, send sufficient ethiers to contract address and invoke the 'doTransfer' function using another account. The creator received 100000000 Wei later but i can't find the corresponding transaction in explorer. It seems transactions invoked by contract are not showed in explorer. Is there any way to show contract transactions? Thanks.

contract ContractSendTest { address creator; function giveMoney() { creator = msg.sender; } function doTransfer() payable { creator.transfer(100000000); } }

metaspartan commented 6 years ago

This was a limitation known with web3 previously, it may be supported now as this explorer hasn't been updated in awhile, contract support was the last thing I was working on, so if I get around to updating this project I will add contract tx support :)

gaoxiangxyz commented 6 years ago

@carsenk Thanks a lot.