Skip to content

Instantly share code, notes, and snippets.

View kirillsurkov's full-sized avatar
:shipit:

Surkov Kirill kirillsurkov

:shipit:
  • Intel
  • Espoo
  • 05:44 (UTC +02:00)
View GitHub Profile
Mar 22 10:21:19 dev.mywish.io java[13309]: 2018-03-22-10:21:19.0861 INFO [blockchain] Try connect block hash: c92fce, number: 326906
Mar 22 10:21:19 dev.mywish.io java[13309]: 2018-03-22-10:21:19.0861 INFO [blockchain] Start try connect
Mar 22 10:21:19 dev.mywish.io java[13309]: 2018-03-22-10:21:19.0861 INFO [blockchain] get current state
Mar 22 10:21:19 dev.mywish.io java[13309]: 2018-03-22-10:21:19.0867 INFO [blockchain] execute start
Mar 22 10:21:19 dev.mywish.io java[13309]: 2018-03-22-10:21:19.0867 INFO [blockexecutor] applyBlock: block: [326906] tx.list: [2]
Mar 22 10:21:19 dev.mywish.io java[13309]: 2018-03-22-10:21:19.0868 INFO [blockexecutor] apply block: [326906] tx: [1]
Mar 22 10:21:19 dev.mywish.io java[13309]: 2018-03-22-10:21:19.0871 INFO [execute] Execute transaction 21 522a899be590988d599108945888f904d592da70eba1a910cc061a98609b3e13
Mar 22 10:21:19 dev.mywish.io java[13309]: 2018-03-22-10:21:19.0871 INFO [execute] Paying: txGasCost: [3000000], gasPrice: [1], gasLimit: [3000000]
Mar 22
pragma solidity ^0.4.0;
contract StoreSomeData {
uint storedData;
event Hello(
uint value
);
function set(uint i) {
pragma solidity ^0.4.20;
contract Main {
uint public xxx;
event TestEvent (
uint value
);
function Main() public {