diff options
author | yenlin.lai <yenlin.lai@cobinhood.com> | 2019-03-21 16:20:57 +0800 |
---|---|---|
committer | Jhih-Ming Huang <jm.huang@cobinhood.com> | 2019-04-11 10:39:59 +0800 |
commit | d6fcba4ee624241128e1f086a6b20c3c75bf928c (patch) | |
tree | cb297092a21953e697c165398661c8c33736bd9a /core/vm/sqlvm/common | |
parent | 0f481a8a2bdafd44db0335bb8a167caa1ccacb4d (diff) | |
download | dexon-d6fcba4ee624241128e1f086a6b20c3c75bf928c.tar dexon-d6fcba4ee624241128e1f086a6b20c3c75bf928c.tar.gz dexon-d6fcba4ee624241128e1f086a6b20c3c75bf928c.tar.bz2 dexon-d6fcba4ee624241128e1f086a6b20c3c75bf928c.tar.lz dexon-d6fcba4ee624241128e1f086a6b20c3c75bf928c.tar.xz dexon-d6fcba4ee624241128e1f086a6b20c3c75bf928c.tar.zst dexon-d6fcba4ee624241128e1f086a6b20c3c75bf928c.zip |
misc: replace shopspring/decimal with our fork
Diffstat (limited to 'core/vm/sqlvm/common')
-rw-r--r-- | core/vm/sqlvm/common/decimal/decimal.go | 2 | ||||
-rw-r--r-- | core/vm/sqlvm/common/storage.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/vm/sqlvm/common/decimal/decimal.go b/core/vm/sqlvm/common/decimal/decimal.go index 0c3d5971a..b02a8ed23 100644 --- a/core/vm/sqlvm/common/decimal/decimal.go +++ b/core/vm/sqlvm/common/decimal/decimal.go @@ -1,6 +1,6 @@ package decimal -import "github.com/shopspring/decimal" +import "github.com/dexon-foundation/decimal" // Shared vars. var ( diff --git a/core/vm/sqlvm/common/storage.go b/core/vm/sqlvm/common/storage.go index 674efbf17..22ef85885 100644 --- a/core/vm/sqlvm/common/storage.go +++ b/core/vm/sqlvm/common/storage.go @@ -3,7 +3,7 @@ package common import ( "math/big" - "github.com/shopspring/decimal" + "github.com/dexon-foundation/decimal" "golang.org/x/crypto/sha3" "github.com/dexon-foundation/dexon/common" |