ETH Price: $2,414.63 (-1.02%)

Transaction Decoder

Block:
7842646 at May-27-2019 03:56:58 PM +UTC
Transaction Fee:
0.000350077 ETH $0.85
Gas Used:
26,929 Gas / 13 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x3BE025D3...200A83CC5
0xB1F919db...9EF03DF25
(DutchX: Deployer)
0.733140031912776096 Eth
Nonce: 480
0.732789954912776096 Eth
Nonce: 481
0.000350077
(MiningPoolHub: Old Address)
8,491.037894538676919591 Eth8,491.038244615676919591 Eth0.000350077

Execution Trace

Migrations.setCompleted( completed=4 )
setCompleted[Migrations (ln:18)]
// File: contracts/Migrations.sol

pragma solidity >=0.4.21 <0.6.0;

contract Migrations {
  address public owner;
  uint public last_completed_migration;

  constructor() public {
    owner = msg.sender;
  }

  modifier restricted() {
    if (msg.sender == owner) _;
  }

  function setCompleted(uint completed) public restricted {
    last_completed_migration = completed;
  }

  function upgrade(address new_address) public restricted {
    Migrations upgraded = Migrations(new_address);
    upgraded.setCompleted(last_completed_migration);
  }
}