- Timestamp:
- 04/27/09 22:06:08 (3 years ago)
- Location:
- trunk/sandbox/jhb/oc2
- Files:
-
- 2 modified
-
authorizer.py (modified) (1 diff)
-
wallet.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/sandbox/jhb/oc2/authorizer.py
r268 r280 38 38 mkc = self.getMKCById(keyid) 39 39 amount += self.denominationToValue(mkc.denomination) 40 if amount > 100 :40 if amount > 10000: 41 41 error = messages.Error() 42 42 error.text = 'way too much' -
trunk/sandbox/jhb/oc2/wallet.py
r279 r280 206 206 secrets = [] 207 207 data = [] 208 print tokenized209 208 for denomination in tokenized: 210 209 mkc = mkcs[str(denomination)] … … 227 226 currency['coins'].append(coin) 228 227 i += 1 229 self.storage.save()228 self.storage.save()
