From 58f9d5e9715d52ffe08df606dfb57194b9253384 Mon Sep 17 00:00:00 2001 From: Graeme Holliday Date: Thu, 27 Apr 2023 16:02:51 -0500 Subject: [PATCH] Update etherAndWei.md Variable name in description is different from variable name expected by the test code: `oneGWei` -> `oneGwei` `isOneGWei` -> `isOneGwei` --- .../transactions-ether-and-wei/etherAndWei.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SolidityBeginnerCourse/transactions-ether-and-wei/etherAndWei.md b/SolidityBeginnerCourse/transactions-ether-and-wei/etherAndWei.md index 074ff0c90..fe11f92d4 100644 --- a/SolidityBeginnerCourse/transactions-ether-and-wei/etherAndWei.md +++ b/SolidityBeginnerCourse/transactions-ether-and-wei/etherAndWei.md @@ -15,7 +15,7 @@ One `ether` is equal to 1,000,000,000,000,000,000 (10^18) `wei` (line 11). Watch a video tutorial on Ether and Wei. ## ⭐️ Assignment -1. Create a `public` `uint` called `oneGWei` and set it to 1 `gwei`. -2. Create a `public` `bool` called `isOneGWei` and set it to the result of a comparison operation between 1 gwei and 10^9. +1. Create a `public` `uint` called `oneGwei` and set it to 1 `gwei`. +2. Create a `public` `bool` called `isOneGwei` and set it to the result of a comparison operation between 1 gwei and 10^9. -Tip: Look at how this is written for `gwei` and `ether` in the contract. \ No newline at end of file +Tip: Look at how this is written for `gwei` and `ether` in the contract.