aboutsummaryrefslogtreecommitdiffstats
path: root/dex/app.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@cobinhood.com>2018-09-25 18:55:00 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:21:31 +0800
commit2ba220653fdf945844896458821808f2edd8f4af (patch)
tree5fb24eed28de25b59e12c7472a222f2a338e2f53 /dex/app.go
parent94bb940818d9b5c6d654da14f13918e65cf84623 (diff)
downloadgo-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 'dex/app.go')
-rw-r--r--dex/app.go26
1 files changed, 5 insertions, 21 deletions
diff --git a/dex/app.go b/dex/app.go
index f87f669fb..21857f3c6 100644
--- a/dex/app.go
+++ b/dex/app.go
@@ -18,9 +18,6 @@
package dex
import (
- "time"
-
- "github.com/dexon-foundation/dexon-consensus-core/common"
"github.com/dexon-foundation/dexon-consensus-core/core/types"
"github.com/ethereum/go-ethereum/core"
@@ -45,26 +42,13 @@ func (d *DexconApp) PreparePayload(position types.Position) []byte {
return nil
}
-// VerifyPayloads verifies if the payloads are valid.
-func (d *DexconApp) VerifyPayloads(payloads []byte) bool {
+// VerifyPayload verifies if the payloads are valid.
+func (d *DexconApp) VerifyPayload(payload []byte) bool {
return true
}
-// BlockConfirmed is called when a block is confirmed and added to lattice.
-func (d *DexconApp) BlockConfirmed(block *types.Block) {
-}
-
-// StronglyAcked is called when a block is strongly acked.
-func (d *DexconApp) StronglyAcked(blockHash common.Hash) {
-}
-
-// TotalOrderingDeliver is called when the total ordering algorithm deliver
-// a set of block.
-func (d *DexconApp) TotalOrderingDeliver(blockHashes common.Hashes, early bool) {
-}
-
-// DeliverBlock is called when a block is add to the compaction chain.
-func (d *DexconApp) DeliverBlock(blockHash common.Hash, timestamp time.Time) {
+// BlockDelivered is called when a block is add to the compaction chain.
+func (d *DexconApp) BlockDelivered(block types.Block) {
}
// BlockProcessedChan returns a channel to receive the block hashes that have
@@ -74,5 +58,5 @@ func (d *DexconApp) BlockProcessedChan() <-chan types.WitnessResult {
}
// WitnessAckDeliver is called when a notary ack is created.
-func (d *DexconApp) WitnessAckDeliver(notaryAck *types.WitnessAck) {
+func (d *DexconApp) WitnessAckDelivered(notaryAck *types.WitnessAck) {
}