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
b70fe3a9
Commit
b70fe3a9
authored
Feb 02, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reverted back to messages
parent
dfa778fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
ethereum.go
ethereum.go
+2
-7
No files found.
ethereum.go
View file @
b70fe3a9
...
...
@@ -169,7 +169,7 @@ func (s *Ethereum) InOutPeers() []*Peer {
return
inboundPeers
[
:
length
]
}
func
(
s
*
Ethereum
)
Broadcast
(
msgType
ethwire
.
MsgType
,
data
interface
{})
{
func
(
s
*
Ethereum
)
Broadcast
(
msgType
ethwire
.
MsgType
,
data
[]
interface
{})
{
msg
:=
ethwire
.
NewMessage
(
msgType
,
data
)
eachPeer
(
s
.
peers
,
func
(
p
*
Peer
,
e
*
list
.
Element
)
{
p
.
QueueMessage
(
msg
)
...
...
@@ -237,12 +237,7 @@ func (s *Ethereum) Start() {
// Bind to addr and port
ln
,
err
:=
net
.
Listen
(
"tcp"
,
":30303"
)
if
err
!=
nil
{
// This is mainly for testing to create a "network"
//if ethutil.Config.Debug {
//log.Println("Connection listening disabled. Acting as client")
//} else {
log
.
Fatal
(
err
)
//}
log
.
Println
(
"Connection listening disabled. Acting as client"
)
}
else
{
s
.
Addr
=
ln
.
Addr
()
// Starting accepting connections
...
...
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