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@byzantine-lab.io>2019-06-12 17:27:19 +0800
commitc399c2fbf2000313ff32f8e1f9b1839f157a8b97 (patch)
tree2c3ddd2d5c6a18934cf57d380c3daa306cd7c9aa /cmd/monkey
parent4cdf3cfea3cc93d0e18fd8c72b953cb62bf5b340 (diff)
downloadgo-tangerine-c399c2fbf2000313ff32f8e1f9b1839f157a8b97.tar.gz
go-tangerine-c399c2fbf2000313ff32f8e1f9b1839f157a8b97.tar.zst
go-tangerine-c399c2fbf2000313ff32f8e1f9b1839f157a8b97.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,