good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
bee05d52
Commit
bee05d52
authored
11 years ago
by
Jeffrey Wilcke
Browse files
Options
Downloads
Patches
Plain Diff
Block verification, TD calculations and overall block processing
parent
dfb8e65c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
block_manager.go
+98
-5
98 additions, 5 deletions
block_manager.go
with
98 additions
and
5 deletions
block_manager.go
+
98
−
5
View file @
bee05d52
...
...
@@ -3,40 +3,63 @@ package main
import
(
"fmt"
"github.com/ethereum/ethutil-go"
"errors"
"log"
"math/big"
)
type
BlockChain
struct
{
l
astBlock
*
ethutil
.
Block
L
astBlock
*
ethutil
.
Block
genesisBlock
*
ethutil
.
Block
TD
*
big
.
Int
}
func
NewBlockChain
()
*
BlockChain
{
bc
:=
&
BlockChain
{}
bc
.
genesisBlock
=
ethutil
.
NewBlock
(
ethutil
.
Encode
(
ethutil
.
Genesis
))
// Set the last know difficulty (might be 0x0 as initial value, Genesis)
bc
.
TD
=
new
(
big
.
Int
)
bc
.
TD
.
SetBytes
(
ethutil
.
Config
.
Db
.
LastKnownTD
())
return
bc
}
func
(
bc
*
BlockChain
)
HasBlock
(
hash
string
)
bool
{
return
bc
.
LastBlock
.
State
()
.
Get
(
hash
)
!=
""
}
type
BlockManager
struct
{
// Ethereum virtual machine for processing contracts
vm
*
Vm
b
lockChain
*
BlockChain
// The block chain :)
b
c
*
BlockChain
}
func
NewBlockManager
()
*
BlockManager
{
bm
:=
&
BlockManager
{
vm
:
NewVm
()}
bm
:=
&
BlockManager
{
vm
:
NewVm
(),
bc
:
NewBlockChain
(),
}
return
bm
}
// Process a block.
func
(
bm
*
BlockManager
)
ProcessBlock
(
block
*
ethutil
.
Block
)
error
{
//
TODO Validation (Or move to other part of the app
li
c
ation
)
//
Block va
li
d
ation
if
err
:=
bm
.
ValidateBlock
(
block
);
err
!=
nil
{
return
err
}
// I'm not sure, but I don't know if there should be thrown
// any errors at this time.
if
err
:=
bm
.
AccumelateRewards
(
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
...
...
@@ -58,10 +81,80 @@ func (bm *BlockManager) ProcessBlock(block *ethutil.Block) error {
<-
lockChan
}
if
bm
.
CalculateTD
(
block
)
{
ethutil
.
Config
.
Db
.
Put
(
block
.
Hash
(),
block
.
MarshalRlp
())
bm
.
bc
.
LastBlock
=
block
}
return
nil
}
func
(
bm
*
BlockManager
)
CalculateTD
(
block
*
ethutil
.
Block
)
bool
{
uncleDiff
:=
new
(
big
.
Int
)
for
_
,
uncle
:=
range
block
.
Uncles
{
uncleDiff
=
uncleDiff
.
Add
(
uncleDiff
,
uncle
.
Difficulty
)
}
// TD(genesis_block) = 0 and TD(B) = TD(B.parent) + sum(u.difficulty for u in B.uncles) + B.difficulty
td
:=
new
(
big
.
Int
)
td
=
td
.
Add
(
bm
.
bc
.
TD
,
uncleDiff
)
td
=
td
.
Add
(
td
,
block
.
Difficulty
)
// The new TD will only be accepted if the new difficulty is
// is greater than the previous.
if
td
.
Cmp
(
bm
.
bc
.
TD
)
>
0
{
bm
.
bc
.
LastBlock
=
block
// Set the new total difficulty back to the block chain
bm
.
bc
.
TD
=
td
return
true
}
return
false
}
// Validates the current block. Returns an error if the block was invalid,
// an uncle or anything that isn't on the current block chain
func
(
bm
*
BlockManager
)
ValidateBlock
(
block
*
ethutil
.
Block
)
error
{
// TODO
// 1. Check if the nonce of the block is valid
// 2. Check if the difficulty is correct
// Check if we have the parent hash, if it isn't known we discard it
// Reasons might be catching up or simply an invalid block
if
bm
.
bc
.
HasBlock
(
block
.
PrevHash
)
{
// Check each uncle's previous hash. In order for it to be valid
// is if it has the same block hash as the current
for
_
,
uncle
:=
range
block
.
Uncles
{
if
uncle
.
PrevHash
!=
block
.
PrevHash
{
if
Debug
{
log
.
Printf
(
"Uncle prvhash mismatch %x %x
\n
"
,
block
.
PrevHash
,
uncle
.
PrevHash
)
}
return
errors
.
New
(
"Mismatching Prvhash from uncle"
)
}
}
}
else
{
return
errors
.
New
(
"Block's parent unknown"
)
}
return
nil
}
func
(
bm
*
BlockManager
)
AccumelateRewards
(
block
*
ethutil
.
Block
)
error
{
// Get the coinbase rlp data
d
:=
block
.
State
()
.
Get
(
block
.
Coinbase
)
ether
:=
ethutil
.
NewEtherFromData
([]
byte
(
d
))
// Reward amount of ether to the coinbase address
ether
.
AddFee
(
ethutil
.
CalculateBlockReward
(
block
,
len
(
block
.
Uncles
)))
block
.
State
()
.
Update
(
block
.
Coinbase
,
string
(
ether
.
MarshalRlp
()))
// TODO Reward each uncle
return
nil
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment