Used nodes:
Linux raspberrypi 4.9.41-v7+ #1023 SMP Tue Aug 8 16:00:15 BST 2017 armv7l GNU/Linux
Linux localhost.localdomain 4.14.5-200.fc26.x86_64 #1 SMP Mon Dec 11 16:29:08 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
contract Escrow { | |
address public buyer; | |
address public seller; | |
address public arbiter; | |
function Escrow (address _seller, address _arbiter) payable { | |
buyer = msg.sender; | |
seller = _seller; | |
arbiter = _arbiter; |