aboutsummaryrefslogtreecommitdiffstats
path: root/test/keygen.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2019-03-07 12:59:49 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:57 +0800
commit1835ee6f172f2e4e15132425e4fe6060f02a9537 (patch)
tree8e7c3c3418b25a2f60c134232d1705a0e691daec /test/keygen.go
parent98d3c3613671a680ac4b680a2ccf9195889819a6 (diff)
downloaddexon-1835ee6f172f2e4e15132425e4fe6060f02a9537.tar.gz
dexon-1835ee6f172f2e4e15132425e4fe6060f02a9537.tar.zst
dexon-1835ee6f172f2e4e15132425e4fe6060f02a9537.zip
test: update test parameters (#229)
* test: update test parameters * update smoke test parameter
Diffstat (limited to 'test/keygen.go')
-rw-r--r--test/keygen.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/keygen.go b/test/keygen.go
index e7441e146..26b8385ed 100644
--- a/test/keygen.go
+++ b/test/keygen.go
@@ -50,8 +50,8 @@ func main() {
address := crypto.PubkeyToAddress(privKey.PublicKey)
genesis.Alloc[address] = core.GenesisAccount{
- Balance: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1e6)),
- Staked: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(5e5)),
+ Balance: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(2e6)),
+ Staked: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1e6)),
PublicKey: crypto.FromECDSAPub(&privKey.PublicKey),
NodeInfo: core.NodeInfo{
Name: fmt.Sprintf("DEXON Test Node %d", i),