From 39a6ed01345a8fac8b110a1af1d8edd01dec395f Mon Sep 17 00:00:00 2001 From: MIURA Yasuyuki Date: Fri, 20 Apr 2018 00:37:25 +0900 Subject: [PATCH 1/3] Fixed the part where the correct answer differs from the sample. --- jp/6/08.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jp/6/08.md b/jp/6/08.md index 740ff7afe..1652556aa 100755 --- a/jp/6/08.md +++ b/jp/6/08.md @@ -542,7 +542,7 @@ material: function levelUp(zombieId) { $("#txStatus").text("Leveling up your zombie..."); return CryptoZombies.methods.levelUp(zombieId) - .send({ from: userAccount, value: web3js.utils.toWei("0.001") }) + .send({ from: userAccount, value: web3js.utils.toWei("0.001", "ether") }) .on("receipt", function(receipt) { $("#txStatus").text("Power overwhelming! Zombie successfully leveled up"); }) From 88740546af6e5a10e90a634eaa253ce07c5d3dcd Mon Sep 17 00:00:00 2001 From: MIURA Yasuyuki Date: Fri, 20 Apr 2018 00:46:14 +0900 Subject: [PATCH 2/3] Update Translation jp. lesson6 chapter5. --- jp/6/05.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jp/6/05.md b/jp/6/05.md index 995b62a49..847771031 100755 --- a/jp/6/05.md +++ b/jp/6/05.md @@ -484,7 +484,7 @@ var accountInterval = setInterval(function() { }, 100); ``` -これは、100ミリセックごとに`userAccount`が`web3.eth.accounts[0]`とイコールのままかをチェックしている(例:ユーザーがまだそのアカウントをアクティブにしているか)。もし違った場合は、`userAccount`を現在のアクティブアカウントに割り当て直し、表示をアップデートする関数を呼び出す。 +これは、100ミリ秒ごとに`userAccount`が`web3.eth.accounts[0]`とイコールのままかをチェックしている(例:ユーザーがまだそのアカウントをアクティブにしているか)。もし違った場合は、`userAccount`を現在のアクティブアカウントに割り当て直し、表示をアップデートする関数を呼び出す。 ## さあテストだ From 341bfb99be374b2e3a3539e2720a59f3f41e2ca6 Mon Sep 17 00:00:00 2001 From: MIURA Yasuyuki Date: Fri, 20 Apr 2018 00:50:34 +0900 Subject: [PATCH 3/3] Update 08.md I was mistakenly committing the changes at the other. --- jp/6/08.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jp/6/08.md b/jp/6/08.md index 1652556aa..740ff7afe 100755 --- a/jp/6/08.md +++ b/jp/6/08.md @@ -542,7 +542,7 @@ material: function levelUp(zombieId) { $("#txStatus").text("Leveling up your zombie..."); return CryptoZombies.methods.levelUp(zombieId) - .send({ from: userAccount, value: web3js.utils.toWei("0.001", "ether") }) + .send({ from: userAccount, value: web3js.utils.toWei("0.001") }) .on("receipt", function(receipt) { $("#txStatus").text("Power overwhelming! Zombie successfully leveled up"); })