aboutsummaryrefslogtreecommitdiffstats
path: root/dex
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2019-03-19 15:02:06 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:50:04 +0800
commite72d82241bd02b872227ee6d240e6cb283d70403 (patch)
tree5f7eb1019c9cadc559083c0a9aaffa8e321c0e67 /dex
parenteef378df069044b377b519db0e144e5a611e1167 (diff)
downloaddexon-e72d82241bd02b872227ee6d240e6cb283d70403.tar
dexon-e72d82241bd02b872227ee6d240e6cb283d70403.tar.gz
dexon-e72d82241bd02b872227ee6d240e6cb283d70403.tar.bz2
dexon-e72d82241bd02b872227ee6d240e6cb283d70403.tar.lz
dexon-e72d82241bd02b872227ee6d240e6cb283d70403.tar.xz
dexon-e72d82241bd02b872227ee6d240e6cb283d70403.tar.zst
dexon-e72d82241bd02b872227ee6d240e6cb283d70403.zip
core: vm: add extra checks to prevent DKG spamming (#272)
Add two maps to check the uniqueness of DKGMasterPublicKey and DKGComplaints to prevent malicious actors from spamming it.
Diffstat (limited to 'dex')
-rw-r--r--dex/governance.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/dex/governance.go b/dex/governance.go
index 35c5b4174..c2f2918b1 100644
--- a/dex/governance.go
+++ b/dex/governance.go
@@ -85,11 +85,16 @@ func (d *DexconGovernance) sendGovTx(ctx context.Context, data []byte) error {
// be included in time.
gasPrice = new(big.Int).Mul(gasPrice, big.NewInt(10))
+ gasLimit, err := core.IntrinsicGas(data, false, false)
+ if err != nil {
+ return err
+ }
+
tx := types.NewTransaction(
nonce,
vm.GovernanceContractAddress,
big.NewInt(0),
- uint64(10000000),
+ gasLimit+vm.GovernanceActionGasCost,
gasPrice,
data)