aboutsummaryrefslogtreecommitdiffstats
path: root/dex
diff options
context:
space:
mode:
authorBojie Wu <bojie@dexon.org>2018-10-12 13:50:17 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:49 +0800
commit7df00d48a6c8ad89de221c5d9a3606e2b39d55a3 (patch)
tree0f6231c7657b0d07a8f0002c5885783827e816c2 /dex
parentefa16f95fce18659532cf650e4ce0b46ec9f9245 (diff)
downloaddexon-7df00d48a6c8ad89de221c5d9a3606e2b39d55a3.tar
dexon-7df00d48a6c8ad89de221c5d9a3606e2b39d55a3.tar.gz
dexon-7df00d48a6c8ad89de221c5d9a3606e2b39d55a3.tar.bz2
dexon-7df00d48a6c8ad89de221c5d9a3606e2b39d55a3.tar.lz
dexon-7df00d48a6c8ad89de221c5d9a3606e2b39d55a3.tar.xz
dexon-7df00d48a6c8ad89de221c5d9a3606e2b39d55a3.tar.zst
dexon-7df00d48a6c8ad89de221c5d9a3606e2b39d55a3.zip
app: implement new interface method
Diffstat (limited to 'dex')
-rw-r--r--dex/app.go131
1 files changed, 104 insertions, 27 deletions
diff --git a/dex/app.go b/dex/app.go
index b34c9f553..521f2233e 100644
--- a/dex/app.go
+++ b/dex/app.go
@@ -19,12 +19,11 @@ package dex
import (
"bytes"
+ "github.com/dexon-foundation/dexon/core/rawdb"
"math/big"
"sync"
"time"
- "github.com/dexon-foundation/dexon/core/rawdb"
-
coreCommon "github.com/dexon-foundation/dexon-consensus-core/common"
coreTypes "github.com/dexon-foundation/dexon-consensus-core/core/types"
@@ -119,12 +118,43 @@ func (d *DexconApp) PreparePayload(position coreTypes.Position) (payload []byte)
continue
}
- for _, tx := range txs {
+ var nonce uint64
+ for i, tx := range txs {
+ // validate start nonce
+ // check undelivered block first
+ // or else check compaction chain state
+ if i == 0 {
+ nonce = tx.Nonce()
+ msg, err := tx.AsMessage(types.MakeSigner(nil, currentBlock.Header().Number))
+ if err != nil {
+ return
+ }
+ undeliveredNonce, exist, err := d.blockchain.GetNonceInConfirmedBlock(position.ChainID, msg.From())
+ if err != nil {
+ return
+ } else if exist {
+ if msg.Nonce() != undeliveredNonce+1 {
+ break
+ }
+ } else {
+ stateDB, err := d.blockchain.State()
+ if err != nil {
+ return
+ }
+ if msg.Nonce() != stateDB.GetNonce(msg.From())+1 {
+ break
+ }
+ }
+ } else if tx.Nonce() != nonce+1 { // check if nonce is sequential
+ break
+ }
+
core.ApplyTransaction(d.blockchain.Config(), d.blockchain, nil, gp, stateDB, currentBlock.Header(), tx, &gasUsed, d.vmConfig)
if gasUsed > gasLimit {
break
}
allTxs = append(allTxs, tx)
+ nonce = tx.Nonce()
}
}
payload, err = rlp.EncodeToBytes(&allTxs)
@@ -179,14 +209,54 @@ func (d *DexconApp) VerifyBlock(block *coreTypes.Block) bool {
return false
}
+ currentBlock := d.blockchain.CurrentBlock()
+
// verify transactions
+ addressNonce := map[common.Address]*struct {
+ Min uint64
+ Max uint64
+ }{}
for _, transaction := range transactions {
if d.txPool.ValidateTx(transaction, false) != nil {
return false
}
+
+ msg, err := transaction.AsMessage(types.MakeSigner(nil, currentBlock.Header().Number))
+ if err != nil {
+ return false
+ }
+ nonce, exist := addressNonce[msg.From()]
+ if !exist {
+ addressNonce[msg.From()] = &struct {
+ Min uint64
+ Max uint64
+ }{Min: msg.Nonce(), Max: msg.Nonce()}
+ } else if msg.Nonce() != nonce.Max+1 {
+ // address nonce is not sequential
+ return false
+ }
+ nonce.Max++
+ }
+
+ for address, nonce := range addressNonce {
+ undeliveredNonce, exist, err := d.blockchain.GetNonceInConfirmedBlock(block.Position.ChainID, address)
+ if err != nil {
+ return false
+ } else if exist {
+ if nonce.Min != undeliveredNonce+1 {
+ return false
+ }
+ } else {
+ stateDB, err := d.blockchain.State()
+ if err != nil {
+ return false
+ }
+ if nonce.Min != stateDB.GetNonce(address)+1 {
+ return false
+ }
+ }
}
- currentBlock := d.blockchain.CurrentBlock()
gasLimit := core.CalcGasLimit(currentBlock, d.config.GasFloor, d.config.GasCeil)
gp := new(core.GasPool).AddGas(gasLimit)
@@ -234,31 +304,38 @@ func (d *DexconApp) VerifyBlock(block *coreTypes.Block) bool {
return true
}
-func (d *DexconApp) BlockConfirmed(block coreTypes.Block) {
-}
-
// BlockDelivered is called when a block is add to the compaction chain.
func (d *DexconApp) BlockDelivered(blockHash coreCommon.Hash, result coreTypes.FinalizationResult) {
- /*
- var transactions types.Transactions
- err := rlp.Decode(bytes.NewReader(block.Payload), &transactions)
- if err != nil {
- return
- }
+ block := d.blockchain.GetConfirmedBlockByHash(blockHash)
+ if block == nil {
+ // do something
+ return
+ }
- _, err = d.blockchain.InsertChain(
- []*types.Block{types.NewBlock(&types.Header{
- ParentHash: common.Hash(block.ParentHash),
- Number: new(big.Int).SetUint64(result.Height),
- Time: new(big.Int).SetInt64(result.Timestamp.Unix()),
- TxHash: types.DeriveSha(transactions),
- Coinbase: common.BytesToAddress(block.ProposerID.Hash[:]),
- }, transactions, nil, nil)})
- if err != nil {
- // do something
- return
- }
+ var transactions types.Transactions
+ err := rlp.Decode(bytes.NewReader(block.Payload), &transactions)
+ if err != nil {
+ return
+ }
- d.notify(result.Height)
- */
+ _, err = d.blockchain.InsertChain(
+ []*types.Block{types.NewBlock(&types.Header{
+ ParentHash: common.Hash(block.ParentHash),
+ Number: new(big.Int).SetUint64(result.Height),
+ Time: new(big.Int).SetInt64(result.Timestamp.Unix()),
+ TxHash: types.DeriveSha(transactions),
+ Coinbase: common.BytesToAddress(block.ProposerID.Hash[:]),
+ }, transactions, nil, nil)})
+ if err != nil {
+ // do something
+ return
+ }
+
+ d.blockchain.RemoveConfirmedBlock(blockHash)
+ d.notify(result.Height)
+}
+
+// BlockConfirmed is called when a block is confirmed and added to lattice.
+func (d *DexconApp) BlockConfirmed(block coreTypes.Block) {
+ d.blockchain.AddConfirmedBlock(&block)
}