Satwik Kansal

Results 198 comments of Satwik Kansal

I"m facing the same issue.

It's likely that port 8000 isn't running any service

hmm, is markupsafe being used by flask? or requests? Those are the only two dependencies the project uses.

Got it, thanks for the details!

There's no limit imposed as such on block size. However, if you want to add it should be fairly easy to add. This project is more like a minimal blockchain...

A real-world network typically will use some form of gossip protocol, where every node is connected to few other nodes and it relays the information to those, and so on,...

But yeah, just in case if someone is interested, they can add a for loop in the `mine` method to relay the transaction to other nodes, and handle the logic...

Nice idea to perform the execution on different threads. But some API responses are dependent on the entire execution (for example, `/chain` endpoint), so they can't be dealt this way....

Ah yes, the parent node should be updated too in the `register_with` API [here](https://github.com/satwikkansal/python_blockchain_app/blob/master/node_server.py#L236). Thanks for pointing this out. > I'll open a new branch, but not sure if I'm...

Hi! Sorry for the late response. > Is every node suppose to store every address of all other nodes? If the network is large (1000s of nodes), that'd be an...