aboutsummaryrefslogtreecommitdiffstats
path: root/dex/app.go
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2019-02-22 13:14:55 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:57 +0800
commit11e2de8c43f867764d4dd1146d467cb6e9bf114b (patch)
treefb821d64098f7c62dabf879f9edfc4490b033a58 /dex/app.go
parentaf12f1f869609d2f3acf27c9315b6bbe816d9761 (diff)
downloaddexon-11e2de8c43f867764d4dd1146d467cb6e9bf114b.tar
dexon-11e2de8c43f867764d4dd1146d467cb6e9bf114b.tar.gz
dexon-11e2de8c43f867764d4dd1146d467cb6e9bf114b.tar.bz2
dexon-11e2de8c43f867764d4dd1146d467cb6e9bf114b.tar.lz
dexon-11e2de8c43f867764d4dd1146d467cb6e9bf114b.tar.xz
dexon-11e2de8c43f867764d4dd1146d467cb6e9bf114b.tar.zst
dexon-11e2de8c43f867764d4dd1146d467cb6e9bf114b.zip
core: Remove K, Phi and NumChains from Governance (#198)
* change default sync_core.sh * vendor: sync to latest core * core: Remove K, Phi and NumChain
Diffstat (limited to 'dex/app.go')
-rw-r--r--dex/app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dex/app.go b/dex/app.go
index 6739ebabb..d2bd02f0c 100644
--- a/dex/app.go
+++ b/dex/app.go
@@ -64,7 +64,7 @@ func NewDexconApp(txPool *core.TxPool, blockchain *core.BlockChain, gov *DexconG
}
func (d *DexconApp) addrBelongsToChain(address common.Address, chainSize, chainID *big.Int) bool {
- return new(big.Int).Mod(address.Big(), chainSize).Cmp(chainID) == 0
+ return true
}
func (d *DexconApp) chainLock(chainID uint32) {