Please help with this posting HTML And Javascript portionSeperate in jsfiddle fomrat thank you.
You are going to create your own Blockchain (just like in thevideo) with only one little difference. He uses an Array to storehis Blockchain, you are simply going to do this making theBlockchain a List.
Differences will be;
- Block object will need a pointer to next (and previous ifimplemented doubly which I recommend)
- Your Block will NOT need an index
- Your Block will NOT need a timestamp.
- Blockchain Object will need a pointer to head and tail.
- Blockchain will need to implement push (you should havethis).
- The key will be writing the isChainValid() function
- You
OROR