diff options
author | bojie <bojie@dexon.org> | 2019-05-08 16:31:23 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-09-17 16:57:29 +0800 |
commit | 29c18926ca71d545805310748d6f9ce3576ec2b0 (patch) | |
tree | 3bed1c4adc79bbc138de4ed7bedd4885e06c0652 /dex | |
parent | 9e0d88fbbfd0aee142615ae1d8a51367ac231187 (diff) | |
download | go-tangerine-29c18926ca71d545805310748d6f9ce3576ec2b0.tar.gz go-tangerine-29c18926ca71d545805310748d6f9ce3576ec2b0.tar.zst go-tangerine-29c18926ca71d545805310748d6f9ce3576ec2b0.zip |
app: increase test accounts balance (#421)
Diffstat (limited to 'dex')
-rw-r--r-- | dex/app_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dex/app_test.go b/dex/app_test.go index a62d9001f..bfc188f36 100644 --- a/dex/app_test.go +++ b/dex/app_test.go @@ -2310,7 +2310,7 @@ func newDexon(masterKey *ecdsa.PrivateKey, accountNum int) (*Dexon, []*ecdsa.Pri } genesis.Alloc[crypto.PubkeyToAddress(key.PublicKey)] = core.GenesisAccount{ - Balance: math.BigPow(10, 18), + Balance: math.BigPow(10, 20), Staked: big.NewInt(0), } accounts = append(accounts, key) |