From 7098ebef4684b7f281dcf487d105d9531fd3e506 Mon Sep 17 00:00:00 2001 From: Rongjian Lan Date: Sat, 8 Sep 2018 12:39:15 -0700 Subject: [PATCH] Fix fmt problem --- client/client.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/client.go b/client/client.go index 1a306cf15..07c60083b 100644 --- a/client/client.go +++ b/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.