Fix fmt problem

pull/69/head
Rongjian Lan 6 years ago
parent 884abbd4a7
commit 7098ebef46
  1. 6
      client/client.go

@ -19,9 +19,9 @@ type Client struct {
Leaders *[]p2p.Peer // All the leaders for each shard
UpdateBlocks func([]*blockchain.Block) // Closure function used to sync new block with the leader. Once the leader finishes the consensus on a new block, it will send it to the clients. Clients use this method to update their blockchain
ShardUtxoMap map[uint32]blockchain.UtxoMap
ShardUtxoMapMutex sync.Mutex // Mutex for the UTXO maps
log log.Logger // Log utility
ShardUtxoMap map[uint32]blockchain.UtxoMap
ShardUtxoMapMutex sync.Mutex // Mutex for the UTXO maps
log log.Logger // Log utility
}
// The message handler for CLIENT/TRANSACTION messages.

Loading…
Cancel
Save