aboutsummaryrefslogtreecommitdiffstats
path: root/block_manager.go
diff options
context:
space:
mode:
Diffstat (limited to 'block_manager.go')
-rw-r--r--block_manager.go34
1 files changed, 24 insertions, 10 deletions
diff --git a/block_manager.go b/block_manager.go
index 0f7a64cf8..134ca0e75 100644
--- a/block_manager.go
+++ b/block_manager.go
@@ -1,21 +1,26 @@
-
- // Blocks, blocks will have transactions.
- // Transactions/contracts are updated in goroutines
- // Each contract should send a message on a channel with usage statistics
- // The statics can be used for fee calculation within the block update method
- // Statistics{transaction, /* integers */ normal_ops, store_load, extro_balance, crypto, steps}
- // The block updater will wait for all goroutines to be finished and update the block accordingly
- // in one go and should use minimal IO overhead.
- // The actual block updating will happen within a goroutine as well so normal operation may continue
-
package main
import (
"fmt"
)
+type BlockChain struct {
+ lastBlock *Block
+
+ genesisBlock *Block
+}
+
+func NewBlockChain() *BlockChain {
+ bc := &BlockChain{}
+ bc.genesisBlock = NewBlock( Encode(Genesis) )
+
+ return bc
+}
+
type BlockManager struct {
vm *Vm
+
+ blockChain *BlockChain
}
func NewBlockManager() *BlockManager {
@@ -26,6 +31,11 @@ func NewBlockManager() *BlockManager {
// Process a block.
func (bm *BlockManager) ProcessBlock(block *Block) error {
+ // TODO Validation (Or move to other part of the application)
+ if err := bm.ValidateBlock(block); err != nil {
+ return err
+ }
+
// Get the tx count. Used to create enough channels to 'join' the go routines
txCount := len(block.transactions)
// Locking channel. When it has been fully buffered this method will return
@@ -50,6 +60,10 @@ func (bm *BlockManager) ProcessBlock(block *Block) error {
return nil
}
+func (bm *BlockManager) ValidateBlock(block *Block) error {
+ return nil
+}
+
func (bm *BlockManager) ProcessContract(tx *Transaction, block *Block, lockChan chan bool) {
// Recovering function in case the VM had any errors
defer func() {