pragma solidity ^0.4.17; import './PocketsHub.sol'; contract TestService { PocketsHub pocketsHub; Service service; function TestService () public { pocketsHub = new PocketsHub(17000); service = pocketsHub.newService(); } function testIt () public returns(address) { return service; } }