From cd8f2943bd15b13b925e897fb19b634b877b4e3f Mon Sep 17 00:00:00 2001 From: Juan De Souza Date: Thu, 5 Oct 2023 21:41:22 -0300 Subject: [PATCH] Update 06-first-functions.md --- .../tutorials/collectibles-workshop/06-first-functions.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/md/en/docs/tutorials/collectibles-workshop/06-first-functions.md b/content/md/en/docs/tutorials/collectibles-workshop/06-first-functions.md index c84bc7dcb..bbd275e48 100644 --- a/content/md/en/docs/tutorials/collectibles-workshop/06-first-functions.md +++ b/content/md/en/docs/tutorials/collectibles-workshop/06-first-functions.md @@ -129,7 +129,8 @@ With errors and events out of the way, it's time to write the core logic for cre // retaining uniqueness. let unique_payload = ( random, - frame_system::Pallet::::extrinsic_index().unwrap_or_default(),frame_system::Pallet::::block_number(), + frame_system::Pallet::::extrinsic_index().unwrap_or_default(), + frame_system::Pallet::::block_number(), ); // Turns into a byte array @@ -213,4 +214,4 @@ With errors and events out of the way, it's time to write the core logic for cre cargo build --package collectibles ``` - Your code should now compile without any warnings. \ No newline at end of file + Your code should now compile without any warnings.