diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-16 10:37:01 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:23:39 +0800 |
commit | 7e45adbb9a08b76c667d235ed397a705495f9852 (patch) | |
tree | 927e218acfbf84b88b4c99391f7544b8e6b18d50 /dex | |
parent | e5137c6582c1ffb6943842aed88b3a31a31c34f1 (diff) | |
download | go-tangerine-7e45adbb9a08b76c667d235ed397a705495f9852.tar go-tangerine-7e45adbb9a08b76c667d235ed397a705495f9852.tar.gz go-tangerine-7e45adbb9a08b76c667d235ed397a705495f9852.tar.bz2 go-tangerine-7e45adbb9a08b76c667d235ed397a705495f9852.tar.lz go-tangerine-7e45adbb9a08b76c667d235ed397a705495f9852.tar.xz go-tangerine-7e45adbb9a08b76c667d235ed397a705495f9852.tar.zst go-tangerine-7e45adbb9a08b76c667d235ed397a705495f9852.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" |