diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-16 10:37:01 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:50 +0800 |
commit | d0d1869fa4f4a0a5c1ddc3d4b8d2899cca43fc6a (patch) | |
tree | 4a2eda3baf022e87845d7cc120e9986430e58076 /dex/app.go | |
parent | 04838f384450658d678e44c0f902c0eed9cd04bd (diff) | |
download | dexon-d0d1869fa4f4a0a5c1ddc3d4b8d2899cca43fc6a.tar.gz dexon-d0d1869fa4f4a0a5c1ddc3d4b8d2899cca43fc6a.tar.zst dexon-d0d1869fa4f4a0a5c1ddc3d4b8d2899cca43fc6a.zip |
core: fix nil map initialization
Diffstat (limited to 'dex/app.go')
-rw-r--r-- | dex/app.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dex/app.go b/dex/app.go index 06b5a5381..1e97c4859 100644 --- a/dex/app.go +++ b/dex/app.go @@ -20,11 +20,12 @@ package dex import ( "bytes" "fmt" - "github.com/dexon-foundation/dexon/log" "math/big" "sync" "time" + "github.com/dexon-foundation/dexon/log" + coreCommon "github.com/dexon-foundation/dexon-consensus-core/common" coreTypes "github.com/dexon-foundation/dexon-consensus-core/core/types" |