aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/monkey
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-12-18 22:57:17 +0800
committerWei-Ning Huang <w@dexon.org>2019-03-12 12:19:09 +0800
commit839aec15c1a253580463392b30d513952c887b0d (patch)
tree1d127f5737430747f06abb1d94def1f55f973fe0 /cmd/monkey
parentb91ee4d6708dd30098268d3fed7761472a77f881 (diff)
downloaddexon-839aec15c1a253580463392b30d513952c887b0d.tar
dexon-839aec15c1a253580463392b30d513952c887b0d.tar.gz
dexon-839aec15c1a253580463392b30d513952c887b0d.tar.bz2
dexon-839aec15c1a253580463392b30d513952c887b0d.tar.lz
dexon-839aec15c1a253580463392b30d513952c887b0d.tar.xz
dexon-839aec15c1a253580463392b30d513952c887b0d.tar.zst
dexon-839aec15c1a253580463392b30d513952c887b0d.zip
cmd/monkey: decrease Distribute amount to 100 DXN
Diffstat (limited to 'cmd/monkey')
-rw-r--r--cmd/monkey/monkey.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/monkey/monkey.go b/cmd/monkey/monkey.go
index e7e5a53c9..21fdfc656 100644
--- a/cmd/monkey/monkey.go
+++ b/cmd/monkey/monkey.go
@@ -216,7 +216,7 @@ func (m *Monkey) Distribute() {
for i, key := range m.keys {
address := crypto.PubkeyToAddress(key.PublicKey)
amount := new(big.Int)
- amount.SetString("1000000000000000000000", 10)
+ amount.SetString("100000000000000000000", 10)
ctxs[i] = &transferContext{
Key: m.source,
ToAddress: address,