Fix import issue of btctxgen.go after my refactor on proto/

pull/55/head
Rongjian Lan 6 years ago
parent fe9bb236b7
commit 2e8ac6a6e7
  1. 7
      client/btctxgen/btctxgen.go

@ -12,6 +12,7 @@ import (
"harmony-benchmark/log"
"harmony-benchmark/node"
"harmony-benchmark/p2p"
proto_node "harmony-benchmark/proto/node"
"math/rand"
"sync"
"time"
@ -247,14 +248,14 @@ func main() {
allCrossTxs = append(allCrossTxs, crossTxs...)
log.Debug("[Generator] Sending single-shard txs ...", "leader", leader, "numTxs", len(txs), "numCrossTxs", len(crossTxs))
msg := node.ConstructTransactionListMessage(txs)
msg := proto_node.ConstructTransactionListMessage(txs)
p2p.SendMessage(leader, msg)
// Note cross shard txs are later sent in batch
}
if len(allCrossTxs) > 0 {
log.Debug("[Generator] Broadcasting cross-shard txs ...", "allCrossTxs", len(allCrossTxs))
msg := node.ConstructTransactionListMessage(allCrossTxs)
msg := proto_node.ConstructTransactionListMessage(allCrossTxs)
p2p.BroadcastMessage(leaders, msg)
// Put cross shard tx into a pending list waiting for proofs from leaders
@ -271,7 +272,7 @@ func main() {
}
// Send a stop message to stop the nodes at the end
msg := node.ConstructStopMessage()
msg := proto_node.ConstructStopMessage()
peers := append(configr.GetValidators(*configFile), leaders...)
p2p.BroadcastMessage(peers, msg)
}

Loading…
Cancel
Save