Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
5f49a659
Commit
5f49a659
authored
Mar 31, 2014
by
Maran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More blockchain testing
parent
6253d109
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
51 additions
and
9 deletions
+51
-9
block_chain.go
ethchain/block_chain.go
+11
-2
block_chain_test.go
ethchain/block_chain_test.go
+29
-6
rlp_test.go
ethutil/rlp_test.go
+10
-0
trie_test.go
ethutil/trie_test.go
+1
-1
No files found.
ethchain/block_chain.go
View file @
5f49a659
...
...
@@ -126,6 +126,7 @@ func (bc *BlockChain) FindCanonicalChain(blocks []*Block, commonBlockHash []byte
log
.
Println
(
"[CHAIN] We have found the common parent block, breaking"
)
break
}
log
.
Println
(
"Checking incoming blocks:"
)
chainDifficulty
.
Add
(
chainDifficulty
,
bc
.
CalculateBlockTD
(
block
))
}
...
...
@@ -139,13 +140,20 @@ func (bc *BlockChain) FindCanonicalChain(blocks []*Block, commonBlockHash []byte
log
.
Println
(
"[CHAIN] We have found the common parent block, breaking"
)
break
}
log
.
Println
(
"CHECKING BLOGK:"
,
i
)
anOtherBlock
:=
bc
.
GetBlock
(
block
.
PrevHash
)
if
anOtherBlock
==
nil
{
// We do not want to count the genesis block for difficulty since that's not being sent
log
.
Println
(
"[CHAIN] At genesis block, breaking"
)
break
}
log
.
Printf
(
"CHECKING OUR OWN BLOCKS: %x"
,
block
.
Hash
())
log
.
Printf
(
"%x"
,
bc
.
GenesisBlock
()
.
Hash
())
curChainDifficulty
.
Add
(
curChainDifficulty
,
bc
.
CalculateBlockTD
(
block
))
}
log
.
Println
(
"[CHAIN] Current chain difficulty:"
,
curChainDifficulty
)
if
chainDifficulty
.
Cmp
(
curChainDifficulty
)
==
1
{
log
.
Print
ln
(
"[CHAIN] The incoming Chain beat our asses, resetting"
)
log
.
Print
f
(
"[CHAIN] The incoming Chain beat our asses, resetting to block: %x"
,
commonBlockHash
)
bc
.
ResetTillBlockHash
(
commonBlockHash
)
return
false
}
else
{
...
...
@@ -165,6 +173,7 @@ func (bc *BlockChain) ResetTillBlockHash(hash []byte) error {
// END TODO
bc
.
Ethereum
.
StateManager
()
.
PrepareDefault
(
returnTo
)
err
:=
ethutil
.
Config
.
Db
.
Delete
(
lastBlock
.
Hash
())
if
err
!=
nil
{
return
err
...
...
ethchain/block_chain_test.go
View file @
5f49a659
...
...
@@ -78,15 +78,38 @@ func (tm *TestManager) CreateChain2() error {
return
err
}
func
TestBlockChainReorg
(
t
*
testing
.
T
)
{
func
TestNegativeBlockChainReorg
(
t
*
testing
.
T
)
{
// We are resetting the database between creation so we need to cache our information
testManager2
:=
NewTestManager
()
testManager2
.
CreateChain2
()
tm2Blocks
:=
testManager2
.
Blocks
testManager
:=
NewTestManager
()
testManager
.
CreateChain1
()
oldState
:=
testManager
.
BlockChain
()
.
CurrentBlock
.
State
()
if
testManager
.
BlockChain
()
.
FindCanonicalChain
(
tm2Blocks
,
testManager
.
BlockChain
()
.
GenesisBlock
()
.
Hash
())
!=
true
{
t
.
Error
(
"I expected TestManager to have the longest chain, but it was TestManager2 instead."
)
}
if
testManager
.
BlockChain
()
.
CurrentBlock
.
State
()
!=
oldState
{
t
.
Error
(
"I expected the top state to be the same as it was as before the reorg"
)
}
}
func
TestPositiveBlockChainReorg
(
t
*
testing
.
T
)
{
testManager
:=
NewTestManager
()
testManager
.
CreateChain1
()
tm1Blocks
:=
testManager
.
Blocks
testManager2
:=
NewTestManager
()
testManager2
.
CreateChain2
()
oldState
:=
testManager2
.
BlockChain
()
.
CurrentBlock
.
State
()
// This fails because we keep resetting the DB
block
:=
testManager
.
BlockChain
()
.
GetBlock
(
testManager
.
BlockChain
()
.
CurrentBlock
.
PrevHash
)
fmt
.
Println
(
block
)
//testManager.BlockChain().FindCanonicalChain(testManager2.Blocks, testManager.BlockChain().GenesisBlock().Hash())
if
testManager2
.
BlockChain
()
.
FindCanonicalChain
(
tm1Blocks
,
testManager
.
BlockChain
()
.
GenesisBlock
()
.
Hash
())
==
true
{
t
.
Error
(
"I expected TestManager to have the longest chain, but it was TestManager2 instead."
)
}
if
testManager2
.
BlockChain
()
.
CurrentBlock
.
State
()
==
oldState
{
t
.
Error
(
"I expected the top state to have been modified but it was not"
)
}
}
ethutil/rlp_test.go
View file @
5f49a659
...
...
@@ -2,6 +2,7 @@ package ethutil
import
(
"bytes"
"fmt"
"math/big"
"reflect"
"testing"
...
...
@@ -55,6 +56,15 @@ func TestValue(t *testing.T) {
}
}
func
TestEncodeDecodeMaran
(
t
*
testing
.
T
)
{
b
:=
NewValue
([]
interface
{}{
"dog"
,
15
,
[]
interface
{}{
"cat"
,
"cat"
,
[]
interface
{}{}},
1024
,
"tachikoma"
})
a
:=
b
.
Encode
()
fmt
.
Println
(
"voor maran"
,
a
)
f
,
i
:=
Decode
(
a
,
0
)
fmt
.
Println
(
"voor maran 2"
,
f
)
fmt
.
Println
(
i
)
}
func
TestEncode
(
t
*
testing
.
T
)
{
strRes
:=
"
\x83
dog"
bytes
:=
Encode
(
"dog"
)
...
...
ethutil/trie_test.go
View file @
5f49a659
package
ethutil
import
(
"fmt"
_
"fmt"
"reflect"
"testing"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment