aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbojie <bojie@dexon.org>2019-05-08 16:31:23 +0800
committerWei-Ning Huang <w@dexon.org>2019-05-08 16:31:23 +0800
commitad310d7e24b7264ec08a69f5c487def45f61863f (patch)
tree37ec46332f076e78293dad928fa905e2df251bd5
parente069e2a2b92afab5cb4b238848225300822e7526 (diff)
downloaddexon-ad310d7e24b7264ec08a69f5c487def45f61863f.tar
dexon-ad310d7e24b7264ec08a69f5c487def45f61863f.tar.gz
dexon-ad310d7e24b7264ec08a69f5c487def45f61863f.tar.bz2
dexon-ad310d7e24b7264ec08a69f5c487def45f61863f.tar.lz
dexon-ad310d7e24b7264ec08a69f5c487def45f61863f.tar.xz
dexon-ad310d7e24b7264ec08a69f5c487def45f61863f.tar.zst
dexon-ad310d7e24b7264ec08a69f5c487def45f61863f.zip
app: increase test accounts balance (#421)
-rw-r--r--dex/app_test.go2
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)