Renaming inp to input_

This commit is contained in:
tim 2016-10-12 13:56:14 +02:00 committed by Sylvain Bellemare
parent 24852bd99f
commit fed1135c13

View File

@ -73,8 +73,8 @@ class Fulfillment(object):
# NOTE: See comment about this special case in
# `Fulfillment.to_dict`
fulfillment = CCFulfillment.from_dict(ffill['fulfillment'])
inp = TransactionLink.from_dict(ffill['input'])
return cls(fulfillment, ffill['owners_before'], inp)
input_ = TransactionLink.from_dict(ffill['input'])
return cls(fulfillment, ffill['owners_before'], input_)
class TransactionLink(object):