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
ae5ace16
Commit
ae5ace16
authored
Jun 26, 2014
by
zelig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
go fmt
parent
648c418f
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
226 additions
and
226 deletions
+226
-226
flags.go
ethereal/flags.go
+7
-7
main.go
ethereal/main.go
+16
-16
gui.go
ethereal/ui/gui.go
+3
-3
cmd.go
ethereum/cmd.go
+23
-23
flags.go
ethereum/flags.go
+5
-5
javascript_runtime.go
ethereum/javascript_runtime.go
+2
-2
main.go
ethereum/main.go
+7
-7
cmd.go
utils/cmd.go
+163
-163
No files found.
ethereal/flags.go
View file @
ae5ace16
package
main
import
(
"bitbucket.org/kardianos/osext"
"flag"
"fmt"
"github.com/ethereum/eth-go/ethlog"
"os"
"os/user"
"path"
"github.com/ethereum/eth-go/ethlog"
"flag"
"bitbucket.org/kardianos/osext"
"path/filepath"
"runtime"
)
...
...
ethereal/main.go
View file @
ae5ace16
package
main
import
(
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/go-ethereum/ethereal/ui"
"github.com/ethereum/go-ethereum/utils"
"github.com/ethereum/eth-go/ethlog"
"github.com/go-qml/qml"
"runtime"
"os"
"runtime"
)
func
main
()
{
...
...
ethereal/ui/gui.go
View file @
ae5ace16
...
...
@@ -6,9 +6,9 @@ import (
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethdb"
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/eth-go/ethpub"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/go-ethereum/utils"
"github.com/go-qml/qml"
"math/big"
...
...
ethereum/cmd.go
View file @
ae5ace16
...
...
@@ -3,8 +3,8 @@ package main
import
(
"github.com/ethereum/eth-go"
"github.com/ethereum/go-ethereum/utils"
"os"
"io/ioutil"
"os"
)
func
InitJsConsole
(
ethereum
*
eth
.
Ethereum
)
{
...
...
@@ -15,7 +15,7 @@ func InitJsConsole(ethereum *eth.Ethereum) {
})
}
func
ExecJsFile
(
ethereum
*
eth
.
Ethereum
,
InputFile
string
)
{
func
ExecJsFile
(
ethereum
*
eth
.
Ethereum
,
InputFile
string
)
{
file
,
err
:=
os
.
Open
(
InputFile
)
if
err
!=
nil
{
logger
.
Fatalln
(
err
)
...
...
ethereum/flags.go
View file @
ae5ace16
...
...
@@ -3,10 +3,10 @@ package main
import
(
"flag"
"fmt"
"github.com/ethereum/eth-go/ethlog"
"os"
"os/user"
"path"
"github.com/ethereum/eth-go/ethlog"
)
var
Identifier
string
...
...
ethereum/javascript_runtime.go
View file @
ae5ace16
package
main
package
main
import
(
"fmt"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/eth-go/ethpub"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/go-ethereum/utils"
"github.com/obscuren/otto"
"io/ioutil"
...
...
ethereum/main.go
View file @
ae5ace16
package
main
import
(
"github.com/ethereum/go-ethereum/utils"
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/go-ethereum/utils"
"runtime"
)
...
...
utils/cmd.go
View file @
ae5ace16
package
utils
import
(
"fmt"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/eth-go/ethminer"
"github.com/ethereum/eth-go/ethpub"
"github.com/ethereum/eth-go/ethrpc"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethlog"
"log"
"io"
"path
"
"log
"
"os"
"os/signal"
"fmt"
"time"
"path"
"strings"
"time"
)
var
logger
=
ethlog
.
NewLogger
(
"CLI"
)
...
...
@@ -50,7 +50,7 @@ func AbsolutePath(Datadir string, filename string) string {
return
path
.
Join
(
Datadir
,
filename
)
}
func
openLogFile
(
Datadir
string
,
filename
string
)
*
os
.
File
{
func
openLogFile
(
Datadir
string
,
filename
string
)
*
os
.
File
{
path
:=
AbsolutePath
(
Datadir
,
filename
)
file
,
err
:=
os
.
OpenFile
(
path
,
os
.
O_RDWR
|
os
.
O_CREATE
|
os
.
O_APPEND
,
0666
)
if
err
!=
nil
{
...
...
@@ -59,7 +59,7 @@ func openLogFile (Datadir string, filename string) *os.File {
return
file
}
func
confirm
(
message
string
)
bool
{
func
confirm
(
message
string
)
bool
{
fmt
.
Println
(
message
,
"Are you sure? (y/n)"
)
var
r
string
fmt
.
Scanln
(
&
r
)
...
...
@@ -83,7 +83,7 @@ func InitDataDir(Datadir string) {
}
}
func
InitLogging
(
Datadir
string
,
LogFile
string
,
LogLevel
int
,
DebugFile
string
)
{
func
InitLogging
(
Datadir
string
,
LogFile
string
,
LogLevel
int
,
DebugFile
string
)
{
var
writer
io
.
Writer
if
LogFile
==
""
{
writer
=
os
.
Stdout
...
...
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