From 269da9d1636fc7f6e3ba6d30aadee752204d58b0 Mon Sep 17 00:00:00 2001 From: Josh Stein <46639943+jcstein@users.noreply.github.com> Date: Sun, 17 Sep 2023 11:17:46 -0400 Subject: [PATCH] fix: resolve gas -> utia #1062 (#1063) --- docs/developers/node-tutorial.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/developers/node-tutorial.mdx b/docs/developers/node-tutorial.mdx index f19dfcd9f17..cb8ea6a5adb 100644 --- a/docs/developers/node-tutorial.mdx +++ b/docs/developers/node-tutorial.mdx @@ -1471,7 +1471,7 @@ respectively when submitting data using the RPC CLI. Learn more about gas fees and limits [here](../../learn/submit-data). -To set the fee of 10000 gas, use the `--fee 10000` flag: +To set the fee of 10000 utia, use the `--fee 10000` flag: ```bash celestia rpc blob submit 0x42690c204d39600fddd3 'gm' --fee 10000 @@ -1483,7 +1483,7 @@ To set a gas limit of 100000, use the `--gas.limit 100000` flag: celestia rpc blob submit 0x42690c204d39600fddd3 'gm' --gas.limit 100000 ``` -To set a fee of 10000 gas and gas limit of 100000, use the +To set a fee of 10000 utia and gas limit of 100000, use the `--fee 10000 --gas.limit 100000` flags: ```bash