mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
349103de1a
- node: signals and node reset, fixes #152 - tests update (testify is used) - node manager refactored, race conditions fixed - node wrapper has been removed, we rely on go-ethereum node now - tx queue refactored - jail refactored - backend and API introduced
7 lines
119 B
Solidity
7 lines
119 B
Solidity
pragma solidity ^0.4.9;
|
|
|
|
contract Test {
|
|
function double(int a) constant returns(int) {
|
|
return 2*a;
|
|
}
|
|
} |