diff options
author | bojie <bojie@dexon.org> | 2019-05-08 16:31:23 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-05-08 16:31:23 +0800 |
commit | ad310d7e24b7264ec08a69f5c487def45f61863f (patch) | |
tree | 37ec46332f076e78293dad928fa905e2df251bd5 | |
parent | e069e2a2b92afab5cb4b238848225300822e7526 (diff) | |
download | go-tangerine-origin.tar.gz go-tangerine-origin.tar.zst go-tangerine-origin.zip |
app: increase test accounts balance (#421)origin
-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) |