This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.21; | |
import "../../node_modules/zeppelin-solidity/contracts/token/ERC20/ERC20.sol"; | |
import "../../node_modules/zeppelin-solidity/contracts/ownership/Ownable.sol"; | |
import "../webshop/Webshop.sol"; | |
contract Escrow is Ownable { | |
enum PaymentStatus { Pending, Completed, Refunded } | |
event PaymentCreation(uint indexed orderId, address indexed customer, uint value); |