Changeset 261 for trunk

Show
Ignore:
Timestamp:
04/04/09 22:32:26 (3 years ago)
Author:
ocjhb
Message:

all tests run through again - for real

Location:
trunk/sandbox/jhb/oc2
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/sandbox/jhb/oc2/documentation.py

    r260 r261  
    223223 
    224224############################################################################### 
     225 
    225226>>> port = 9090 
    226227>>> denominations = [0,1,2,5,10,20] 
     
    232233>>> issuer.getMasterPubKey().verifyContainerSignature(cdd) 
    233234True 
    234 >>> cdd.toString(True) 
     235 
    235236############################################################################### 
    236237 
  • trunk/sandbox/jhb/oc2/messages.py

    r259 r261  
    3131    ] 
    3232 
     33class TransferToken(Message): 
     34     fields = Message.fields + [ 
     35        Field('transactionId'), 
     36        Field('target'), 
     37        Field('blinds'), 
     38        SubitemsField('coins'), 
     39        Field('options') 
     40    ] 
    3341 
    3442