Created
September 23, 2017 20:31
-
-
Save dvf/dc170428bb29d3a47e342e3266a87504 to your computer and use it in GitHub Desktop.
Step 9: Consensus (Retrieve Chain)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@app.route('/chain', methods=['GET']) | |
def full_chain(): | |
response = { | |
'chain': blockchain.chain, | |
'length': len(blockchain.chain), | |
} | |
return jsonify(response), 200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment