diff options
author | bojie <bojie@dexon.org> | 2018-12-03 16:30:53 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | c7f9479a5c1fa013598da59cc56f60aa4d3bd5cb (patch) | |
tree | cb83a48c10489e93e66cb3a3258fe3346252b89d /dex/backend.go | |
parent | c334a14b56c5a9239e9839c8bf870cb2425dc08f (diff) | |
download | dexon-c7f9479a5c1fa013598da59cc56f60aa4d3bd5cb.tar dexon-c7f9479a5c1fa013598da59cc56f60aa4d3bd5cb.tar.gz dexon-c7f9479a5c1fa013598da59cc56f60aa4d3bd5cb.tar.bz2 dexon-c7f9479a5c1fa013598da59cc56f60aa4d3bd5cb.tar.lz dexon-c7f9479a5c1fa013598da59cc56f60aa4d3bd5cb.tar.xz dexon-c7f9479a5c1fa013598da59cc56f60aa4d3bd5cb.tar.zst dexon-c7f9479a5c1fa013598da59cc56f60aa4d3bd5cb.zip |
app: add app test case and benchmark (#66)
Diffstat (limited to 'dex/backend.go')
-rw-r--r-- | dex/backend.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dex/backend.go b/dex/backend.go index 550b1051a..eb9d8f765 100644 --- a/dex/backend.go +++ b/dex/backend.go @@ -150,7 +150,7 @@ func New(ctx *node.ServiceContext, config *Config) (*Dexon, error) { // Dexcon related objects. dex.governance = NewDexconGovernance(dex.APIBackend, dex.chainConfig, config.PrivateKey) - dex.app = NewDexconApp(dex.txPool, dex.blockchain, dex.governance, chainDb, config, vmConfig) + dex.app = NewDexconApp(dex.txPool, dex.blockchain, dex.governance, chainDb, config) // Set config fetcher so engine can fetch current system configuration from state. engine.SetConfigFetcher(dex.governance) |