fix comments and polish

pull/8/head
Minh Doan 7 years ago
parent ca404d2d71
commit ceb19ed8ea
  1. 5
      node/node.go
  2. 15
      node/node_handler.go

@ -6,13 +6,14 @@ import (
"harmony-benchmark/log"
"net"
"os"
"sync"
"strconv"
"sync"
)
var pendingTxMutex = &sync.Mutex{}
// A node represents a program (machine) participating in the network
// Node represents a program (machine) participating in the network
// TODO(minhdoan, rj): consider using BlockChannel *chan blockchain.Block for efficiency.
type Node struct {
// Consensus object containing all consensus related data (e.g. committee members, signatures, commits)
consensus *consensus.Consensus

@ -2,27 +2,27 @@ package node
import (
"bytes"
"encoding/gob"
"harmony-benchmark/blockchain"
"time"
"net"
"harmony-benchmark/p2p"
"harmony-benchmark/common"
"harmony-benchmark/p2p"
"net"
"os"
"encoding/gob"
"time"
)
// Handler of the leader node.
// NodeHandler handles a new incoming connection.
func (node *Node) NodeHandler(conn net.Conn) {
defer conn.Close()
// Read p2p message payload
content, err := p2p.ReadMessageContent(conn)
consensus := node.consensus
if err != nil {
node.log.Error("Read p2p data failed", "err", err, "node", node)
return
}
consensus := node.consensus
msgCategory, err := common.GetMessageCategory(content)
if err != nil {
@ -106,7 +106,7 @@ func (node *Node) transactionMessageHandler(msgPayload []byte) {
}
}
// Copy the txId byte slice over to 32 byte array so the map can key on it
// getFixedByteTxId copies the txId byte slice over to 32 byte array so the map can key on it
func getFixedByteTxId(txId []byte) [32]byte {
var id [32]byte
for i := range id {
@ -115,6 +115,7 @@ func getFixedByteTxId(txId []byte) [32]byte {
return id
}
// WaitForConsensusReady ...
func (node *Node) WaitForConsensusReady(readySignal chan int) {
node.log.Debug("Waiting for consensus ready", "node", node)

Loading…
Cancel
Save