Xyf
Xyf
is this fixed?
None.
https://github.com/Hourglss/SimpleCoin
``` @node.route('/balances', methods=['GET']) def get_balance(): global BLOCKCHAIN working = BLOCKCHAIN balances = {} balances_json = [] for block in working: if block.data['transactions'] is not None: for transaction in block.data['transactions']: to...
I’m working on it. Check my repo, I pulled apart this code and I’m trying to make something that actually works. This code doesn’t actually work for getting a chain...
see fix at https://github.com/Hourglss/SimpleCoin
This does not fix my issue
It's a problem with putting some ECDSA keys. Just make sure that there's no "+" in either the public or public key... works fine for me now. I don't know...
Yes, simplecoin doesn't actually function. Networking does not work, the process for sharing data between processes is not functional and even redesigned to be functional, is bad practice. Just look...
Right now I can mine between 33-36 blocks, depending on how I choose to handle the Pipes. The limiting factor is the Pipe though, not the size of the blockchain...