Where to see the state of the smart contact?

Hi,
this is my contract:

pragma solidity ^0.4.0;
contract Counter {
    int private count = 0;
    function incrementCounter() public {
        count += 1;
    }
    function decrementCounter() public {
        count -= 1;
    }
    function getCount() public constant returns (int) {
        return count;
    }
}

I’ve compiled it with Remix, selectAccount is set and I call it like this:
iele_messageCall(0x2de019941161bd8c7fae79cdd978034f022e60e1, 0x1000000, 0, 0, "getCount")
The tx hash from that call is 0xba4854698beaa8b2f2b68b2b0589eb33b231c29ff17c0f1d33bfaa011d734b53.
But I don’t know how to see the result in the blockchain. It would be great if someone could tell me how to see it! Thanks in advance!

2 Likes

Same here. Where do you get the output?