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
584f9be7
Commit
584f9be7
authored
Jan 01, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved some testing code
parent
5da78427
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
45 deletions
+15
-45
ethereum.go
ethereum.go
+15
-27
trie_test.go
trie_test.go
+0
-18
No files found.
ethereum.go
View file @
584f9be7
...
...
@@ -4,10 +4,18 @@ import (
"fmt"
"os"
"os/signal"
"flag"
)
const
Debug
=
true
var
StartDBQueryInterface
bool
func
Init
()
{
flag
.
BoolVar
(
&
StartDBQueryInterface
,
"db"
,
false
,
"start db query interface"
)
flag
.
Parse
()
}
// Register interrupt handlers so we can stop the server
func
RegisterInterupts
(
s
*
Server
)
{
// Buffered chan of one is enough
...
...
@@ -26,32 +34,12 @@ func RegisterInterupts(s *Server) {
func
main
()
{
InitFees
()
bm
:=
NewBlockManager
()
tx
:=
NewTransaction
(
"
\x00
"
,
20
,
[]
string
{
"SET 10 6"
,
"LD 10 10"
,
"LT 10 1 20"
,
"SET 255 7"
,
"JMPI 20 255"
,
"STOP"
,
"SET 30 200"
,
"LD 30 31"
,
"SET 255 22"
,
"JMPI 31 255"
,
"SET 255 15"
,
"JMP 255"
,
})
txData
:=
tx
.
MarshalRlp
()
copyTx
:=
&
Transaction
{}
copyTx
.
UnmarshalRlp
(
txData
)
tx2
:=
NewTransaction
(
"
\x00
"
,
20
,
[]
string
{
"SET 10 6"
,
"LD 10 10"
})
blck
:=
CreateBlock
([]
*
Transaction
{
tx2
,
tx
})
bm
.
ProcessBlock
(
blck
)
Init
()
fmt
.
Println
(
"GenesisBlock:"
,
GenisisBlock
,
"hashed"
,
GenisisBlock
.
Hash
())
if
StartDBQueryInterface
{
dbInterface
:=
NewDBInterface
()
dbInterface
.
Start
()
}
else
{
Testing
()
}
}
trie_test.go
View file @
584f9be7
...
...
@@ -5,24 +5,6 @@ import (
"encoding/hex"
)
type
MemDatabase
struct
{
db
map
[
string
][]
byte
}
func
NewMemDatabase
()
(
*
MemDatabase
,
error
)
{
db
:=
&
MemDatabase
{
db
:
make
(
map
[
string
][]
byte
)}
return
db
,
nil
}
func
(
db
*
MemDatabase
)
Put
(
key
[]
byte
,
value
[]
byte
)
{
db
.
db
[
string
(
key
)]
=
value
}
func
(
db
*
MemDatabase
)
Get
(
key
[]
byte
)
([]
byte
,
error
)
{
return
db
.
db
[
string
(
key
)],
nil
}
func
TestTriePut
(
t
*
testing
.
T
)
{
db
,
err
:=
NewMemDatabase
()
trie
:=
NewTrie
(
db
,
""
)
...
...
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