Search icon CANCEL
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learn Blockchain Programming with JavaScript

You're reading from  Learn Blockchain Programming with JavaScript

Product type Book
Published in Nov 2018
Publisher Packt
ISBN-13 9781789618822
Pages 252 pages
Edition 1st Edition
Languages
Concepts
Author (1):
Eric Traub Eric Traub
Profile icon Eric Traub

Table of Contents (10) Chapters

Preface 1. Setting up the Project 2. Building a Blockchain 3. Accessing the Blockchain through an API 4. Creating a Decentralized Blockchain Network 5. Synchronizing the Network 6. Consensus Algorithms 7. Block Explorer 8. In conclusion... 9. Other Books You May Enjoy

Building the getBlock method

Let's build a new method called getBlock that will take the given blockHash and search the entire blockchain for the block associated with that particular hash. In order to build the getBlock method, follow these steps:

  1. Go to the dev/blockchain.js file and after the chainIsValid method, define this new method as follows:
Blockchain.prototype.getBlock = function(blockHash) { 

};

  1. Inside this method, we want to iterate through the entire blockchain and search for the block that has a particular blockHash value. Then, this method will return that specific block to us. We're going to do all this with the help of a for loop:
Blockchain.prototype.getBlock = function(blockHash) { 
this.chain.forEach(block => {

});
};

When defining the for loop, we cycle through every single block in the blockchain.

  1. Next, inside the loop, mention...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}