satwikkansal / python_blockchain_app

A fully functional blockchain application implemented in Python from scratch (with tutorial).
819 stars 471 forks source link

Changes to be made views.py #23

Closed Abbi711 closed 4 years ago

Abbi711 commented 4 years ago

"To update the node with which the frontend application syncs (default is localhost port 8000), change CONNECTED_NODE_ADDRESS field in the views.py file"

CONNECTED_NODE_ADDRESS = "http://127.0.0.1:8000"

What change has to be made to views.py ?

satwikkansal commented 4 years ago

Update CONNECTED_NODE_ADDRESS to the host address of blockchain node you want to sync with.

Abbi711 commented 4 years ago

What do we change in CONNECTED_NODE_ADDRESS to run more than one node at once ?

satwikkansal commented 4 years ago

No changes need to be made for multiple nodes. Views.py is a client application file, not related to the blockchain system