import os
from subprocess import call
def main():
extensions = ('.sol')
for subdir, dirs, files in os.walk("."):
for file in files:
ext = os.path.splitext(file)[-1].lower()
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.24; | |
| contract Escrow { | |
| event Deposited(address indexed payee, uint256 weiAmount); | |
| event Withdrawn(address indexed payee, uint256 weiAmount); | |
| mapping(address => uint256) private _deposits; | |
| function depositsOf(address payee) public view returns (uint256) { |
NewerOlder