From 28690edb7f126120166a96cc335ac699b17a6771 Mon Sep 17 00:00:00 2001 From: Chris Jacob Date: Wed, 1 May 2024 12:54:41 +1000 Subject: [PATCH] README typo from: "coinsToBurnInRequiredFormat" to: "coinsToMintInRequiredFormat" README typo fixed From: "coinsToBurnInRequiredFormat" To: "coinsToMintInRequiredFormat" --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3fd5108..50659f7 100644 --- a/README.md +++ b/README.md @@ -657,7 +657,7 @@ PUBLIC_KEY = "Your public key" for Example, if you want to mint 15 DAO coin, set coinsToBurn to hex(int(15*1e18))''' desoTrade = deso.Trade(publicKey=PUBLIC_KEY, seedHex=SEED_HEX) coinsToMint = 1000000 -coinsToBurnInRequiredFormat = hex(int(coinsToMint * 1e18)) -mintStatus = desoTrade.mintDAOCoins(coinsToBurnInRequiredFormat) +coinsToMintInRequiredFormat = hex(int(coinsToMint * 1e18)) +mintStatus = desoTrade.mintDAOCoins(coinsToMintInRequiredFormat) print(mintStatus) ```