Transaction Hash:
Block:
9574144 at Feb-28-2020 07:45:47 PM +UTC
Transaction Fee:
0.000027004 ETH
$0.08
Gas Used:
27,004 Gas / 1 Gwei
Emitted Events:
174 |
V00_Marketplace.ListingUpdated( party=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, listingID=2846, ipfsHash=5F90848A67B8ED604C13B214B18247D1EB38EEB68DB383F494288DEC214D8F65 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x04668Ec2...D451c8F7F
Miner
| (zhizhu.top) | 994.04982939418076594 Eth | 994.04985639818076594 Eth | 0.000027004 | |
0x343a3C7F...F643678d9 |
0.002636721281576316 Eth
Nonce: 307
|
0.002609717281576316 Eth
Nonce: 308
| 0.000027004 |
Execution Trace
V00_Marketplace.updateListing( listingID=2846, _ipfsHash=5F90848A67B8ED604C13B214B18247D1EB38EEB68DB383F494288DEC214D8F65, _additionalDeposit=0 )
updateListing[V00_Marketplace (ln:173)]
_updateListing[V00_Marketplace (ln:178)]
transferFrom[V00_Marketplace (ln:204)]
ListingUpdated[V00_Marketplace (ln:208)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.24;// produced by the Solididy File Flattener (c) David Appleton 2018// contact : dave@akomba.com// released under Apache 2.0 licencecontract Ownable {address public owner;event OwnershipRenounced(address indexed previousOwner);event OwnershipTransferred(address indexed previousOwner,address indexed newOwner);/*** @dev The Ownable constructor sets the original `owner` of the contract to the sender* account.*/constructor() public {owner = msg.sender;}/*** @dev Throws if called by any account other than the owner.*/