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
7ea76fcf
Commit
7ea76fcf
authored
May 15, 2015
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core, cmd/geth, cmd/mist: cleanup. bump version 0.9.21
parent
79fa0586
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
7 deletions
+3
-7
main.go
cmd/geth/main.go
+1
-3
main.go
cmd/mist/main.go
+1
-1
cmd.go
cmd/utils/cmd.go
+1
-1
block_processor.go
core/block_processor.go
+0
-2
No files found.
cmd/geth/main.go
View file @
7ea76fcf
...
@@ -50,7 +50,7 @@ import _ "net/http/pprof"
...
@@ -50,7 +50,7 @@ import _ "net/http/pprof"
const
(
const
(
ClientIdentifier
=
"Geth"
ClientIdentifier
=
"Geth"
Version
=
"0.9.2
0
"
Version
=
"0.9.2
1
"
)
)
var
(
var
(
...
@@ -283,8 +283,6 @@ JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Conso
...
@@ -283,8 +283,6 @@ JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Conso
}
}
func
main
()
{
func
main
()
{
//fmt.Printf("\n 🌞\n\n ᴡᴇʟᴄᴏᴍᴇ ᴛᴏ ᴛʜᴇ\n 𝐅 𝐑 𝐎 𝐍 𝐓 𝐈 𝐄 𝐑\n\n🌾 🌵🌾🌾 🐎 🌾 🌵 🌾\n\n")
fmt
.
Println
(
"
\n
Welcome to the
\n
FRONTIER
\n
"
)
runtime
.
GOMAXPROCS
(
runtime
.
NumCPU
())
runtime
.
GOMAXPROCS
(
runtime
.
NumCPU
())
defer
logger
.
Flush
()
defer
logger
.
Flush
()
if
err
:=
app
.
Run
(
os
.
Args
);
err
!=
nil
{
if
err
:=
app
.
Run
(
os
.
Args
);
err
!=
nil
{
...
...
cmd/mist/main.go
View file @
7ea76fcf
...
@@ -37,7 +37,7 @@ import (
...
@@ -37,7 +37,7 @@ import (
const
(
const
(
ClientIdentifier
=
"Mist"
ClientIdentifier
=
"Mist"
Version
=
"0.9.
19
"
Version
=
"0.9.
21
"
)
)
var
(
var
(
...
...
cmd/utils/cmd.go
View file @
7ea76fcf
...
@@ -104,7 +104,7 @@ func Fatalf(format string, args ...interface{}) {
...
@@ -104,7 +104,7 @@ func Fatalf(format string, args ...interface{}) {
}
}
func
StartEthereum
(
ethereum
*
eth
.
Ethereum
)
{
func
StartEthereum
(
ethereum
*
eth
.
Ethereum
)
{
glog
.
V
(
logger
.
Info
)
.
Infoln
(
"Starting
"
,
ethereum
.
Name
())
glog
.
V
(
logger
.
Info
)
.
Infoln
(
"Starting"
,
ethereum
.
Name
())
if
err
:=
ethereum
.
Start
();
err
!=
nil
{
if
err
:=
ethereum
.
Start
();
err
!=
nil
{
Fatalf
(
"Error starting Ethereum: %v"
,
err
)
Fatalf
(
"Error starting Ethereum: %v"
,
err
)
}
}
...
...
core/block_processor.go
View file @
7ea76fcf
...
@@ -24,8 +24,6 @@ const (
...
@@ -24,8 +24,6 @@ const (
BlockChainVersion
=
2
BlockChainVersion
=
2
)
)
var
statelogger
=
logger
.
NewLogger
(
"BLOCK"
)
type
BlockProcessor
struct
{
type
BlockProcessor
struct
{
db
common
.
Database
db
common
.
Database
extraDb
common
.
Database
extraDb
common
.
Database
...
...
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