We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I am fairly new to nodejs, so this may be do to my lack of knowledge.
But I am having trouble getting the transactions to display on the localhost:3000.
Steps to reproduce
#this connects the server.
I run this in the terminal.
POST /blockchain/body // add new data to the chain
Please enter content (application/x-www-form-urlencoded) to be POSTed: 12345896
^C #have to Force Exit
npm run test
[email protected] test /home/user/blockchain-in-node eslint .
Should Andy and Johns Transactions be displayed on the local host after running this command?
let transaction = new Transaction('Andy', 'John', 10); let nextBlock = blockchain.buildNextBlock([transaction]); blockchain.addBlock(nextBlock);
let transaction2 = new Transaction('John', 'Andy', 5);
Thank you,
E
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I am fairly new to nodejs, so this may be do to my lack of knowledge.
But I am having trouble getting the transactions to display on the localhost:3000.
Steps to reproduce
#this connects the server.
I run this in the terminal.
POST /blockchain/body // add new data to the chain
Please enter content (application/x-www-form-urlencoded) to be POSTed:
12345896
^C #have to Force Exit
npm run test
Should Andy and Johns Transactions be displayed on the local host after running this command?
let transaction = new Transaction('Andy', 'John', 10);
let nextBlock = blockchain.buildNextBlock([transaction]);
blockchain.addBlock(nextBlock);
let transaction2 = new Transaction('John', 'Andy', 5);
Thank you,
E
The text was updated successfully, but these errors were encountered: