diff options
author | BJ4 <bojie@dexon.org> | 2018-11-03 12:03:27 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:56 +0800 |
commit | a0863aaeb79819c209116687940775f4aa3f963e (patch) | |
tree | 00691c00b0e741802e78bed848e82c4a5c1f5151 /dex | |
parent | 543b8cddaa0ed69dcec5d801125ff43b86cc030d (diff) | |
download | dexon-a0863aaeb79819c209116687940775f4aa3f963e.tar dexon-a0863aaeb79819c209116687940775f4aa3f963e.tar.gz dexon-a0863aaeb79819c209116687940775f4aa3f963e.tar.bz2 dexon-a0863aaeb79819c209116687940775f4aa3f963e.tar.lz dexon-a0863aaeb79819c209116687940775f4aa3f963e.tar.xz dexon-a0863aaeb79819c209116687940775f4aa3f963e.tar.zst dexon-a0863aaeb79819c209116687940775f4aa3f963e.zip |
app: add back mutex to prevent concurrent map read write
Diffstat (limited to 'dex')
-rw-r--r-- | dex/app.go | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/dex/app.go b/dex/app.go index d28f5f490..643949aac 100644 --- a/dex/app.go +++ b/dex/app.go @@ -49,7 +49,9 @@ type DexconApp struct { chainLocksInitMu sync.Mutex chainLocks map[uint32]*sync.RWMutex - chainLatestRoot map[uint32]*common.Hash + + chainLatestRootMu sync.Mutex + chainLatestRoot map[uint32]*common.Hash } type notify struct { @@ -467,10 +469,16 @@ func (d *DexconApp) validateNonce(txs types.Transactions) (map[common.Address]ui } func (d *DexconApp) getChainLatestRoot(chainID uint32) *common.Hash { + d.chainLatestRootMu.Lock() + defer d.chainLatestRootMu.Unlock() + return d.chainLatestRoot[chainID] } func (d *DexconApp) setChainLatestRoot(chainID uint32, root *common.Hash) { + d.chainLatestRootMu.Lock() + defer d.chainLatestRootMu.Unlock() + d.chainLatestRoot[chainID] = root } |