Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
revert: minor local change
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhar-shubhendu committed Dec 15, 2020
1 parent 1cd6c42 commit 48054b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/tezos/flextesa.js
Expand Up @@ -156,7 +156,9 @@ const Flextesa = {
logger.log("");

const formatAccount = (a) => [a.name, a.pk, a.pkh, a.sk].join(",") + "@" + a.balance;
const ganacheAccounts = await generateAccounts(1, "ganache", 1000000000000);
// In Tezos, a participant needs to have a minimum stake of 8,000 ꜩ (which is called a roll).
// https://tezos.gitlab.io/whitedoc/proof_of_stake.html#brief-overview
const ganacheAccounts = await generateAccounts(1, "ganache", 8000 * oneTez);
const cmdAccounts = [...accounts]
.map((a) => {
const cmdAccount = formatAccount(a);
Expand Down

0 comments on commit 48054b0

Please sign in to comment.