FAQ: Build your own Mini-Blockchain! - Generating Block Hashes

This community-built FAQ covers the “Generating Block Hashes” exercise from the lesson “Build your own Mini-Blockchain!”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Introduction to Blockchain

FAQs on the exercise Generating Block Hashes

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

When defining the block content, what is the exact difference between defining it like
block_contents = str(self.timestamp) + …
vs.
**self.**block_contents = str(self.timestamp) + …

Welcome to the forums!

Using this, we are creating a block_contents variable within the scope of the generate_hash() method. Simply a variable.

Using this, we are creating a new block_contents instance variable associated with the current object. It is a property of the current object, self.


Side note slightly related to the topic: it’s good practice to define all your instance variables only in the __init___() method and not in other methods.

1 Like

Thanks a lot Victoria, all understood.

1 Like

Hi, I am receiving the following error message when I run the code:
" Oops! It looks like transactions was not added to the final string."
I double checked the code with the solution and it’s the same code. Then copied the solution into my code area and run it I received the same error message.
What am I missing here?
Thank you.