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
| #!/usr/bin/env python2 | |
| import json | |
| import random | |
| import copy | |
| import googlemaps | |
| import math | |
| import os.path | |
| import datetime | |
| def distanceFromLarAndLon(lon1, lat1, lon2, lat2): |
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
| //run me at https://ethereum.github.io/browser-solidity/#GIST_ID=abb4967f9a5fa3229b5bb2b65fa24562 | |
| contract signatureManagement { | |
| address[] signatureAllocatorPartner; | |
| mapping (address => uint) signatureAllocatorPartnerId; | |
| Mandate[] mandates; | |
| authorizedSigningPartnerForMandate[] authorisationsGranted; |
NewerOlder