better to not have logging of tokens
parent
f83ff09d05
commit
2ae6942f4f
|
@ -109,7 +109,7 @@ class Transaction(models.Model):
|
|||
super(Transaction, self).save(*args, **kwargs) # Call the "real" save() method.
|
||||
|
||||
def __unicode__(self):
|
||||
return u"-- Transaction:\n \tstatus: %s\n \t amount: %s\n \treference: %s\n \terror: %s\n" % (self.status, str(self.amount), self.preapproval_key, self.error)
|
||||
return u"-- Transaction:\n \tstatus: %s\n \t amount: %s\n \treference: %s\n \terror: %s\n" % (self.status, str(self.amount), self.error)
|
||||
|
||||
def create_receivers(self, receiver_list):
|
||||
|
||||
|
|
Loading…
Reference in New Issue