Fix tests

This commit is contained in:
Daniel van Flymen 2018-01-23 23:58:09 -05:00
parent 62772084b9
commit a245174c24
1 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@ class Blockchain:
return False
def new_block(self, proof: int, previous_hash: Optional[str]=None) -> Dict[str, Any]:
def new_block(self, proof, previous_hash):
"""
Create a new Block in the Blockchain
@ -104,7 +104,7 @@ class Blockchain:
'timestamp': time(),
'transactions': self.current_transactions,
'proof': proof,
'previous_hash': previous_hash or self.hash(last_block),
'previous_hash': previous_hash or self.hash(self.chain[-1]),
}
# Reset the current list of transactions
@ -131,7 +131,7 @@ class Blockchain:
return self.last_block['index'] + 1
@property
def last_block(self) -> Dict[str, Any]:
def last_block(self):
return self.chain[-1]
@staticmethod