diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-16 10:37:01 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | d9ca16858f8c0edb02140d443ea62606ce7be579 (patch) | |
tree | f1b4bb1139564ca70b6ee3eacfb0818634a76a92 /dex | |
parent | a7d394e8c08fe9ccadc06c287d680c0632f414d7 (diff) | |
download | dexon-d9ca16858f8c0edb02140d443ea62606ce7be579.tar.gz dexon-d9ca16858f8c0edb02140d443ea62606ce7be579.tar.zst dexon-d9ca16858f8c0edb02140d443ea62606ce7be579.zip |
core: fix nil map initialization
Diffstat (limited to 'dex')
-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" |