diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-09-25 18:55:00 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:21:31 +0800 |
commit | 2ba220653fdf945844896458821808f2edd8f4af (patch) | |
tree | 5fb24eed28de25b59e12c7472a222f2a338e2f53 /consensus/dexcon/dexcon.go | |
parent | 94bb940818d9b5c6d654da14f13918e65cf84623 (diff) | |
download | go-tangerine-2ba220653fdf945844896458821808f2edd8f4af.tar go-tangerine-2ba220653fdf945844896458821808f2edd8f4af.tar.gz go-tangerine-2ba220653fdf945844896458821808f2edd8f4af.tar.bz2 go-tangerine-2ba220653fdf945844896458821808f2edd8f4af.tar.lz go-tangerine-2ba220653fdf945844896458821808f2edd8f4af.tar.xz go-tangerine-2ba220653fdf945844896458821808f2edd8f4af.tar.zst go-tangerine-2ba220653fdf945844896458821808f2edd8f4af.zip |
Use dex.Config instead of eth.Config
Diffstat (limited to 'consensus/dexcon/dexcon.go')
-rw-r--r-- | consensus/dexcon/dexcon.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/consensus/dexcon/dexcon.go b/consensus/dexcon/dexcon.go index bbdd06ed8..2f9eaa046 100644 --- a/consensus/dexcon/dexcon.go +++ b/consensus/dexcon/dexcon.go @@ -27,6 +27,10 @@ import ( "github.com/ethereum/go-ethereum/rpc" ) +// Config is the configuration for DEXON consensus. +type Config struct { +} + // Dexcon is a delegated proof-of-stake consensus engine. type Dexcon struct { config *params.DexconConfig |