formatting

This commit is contained in:
Jitendra Bhurat 2018-10-01 14:29:37 -04:00
parent 2991562244
commit b55ba5690e
1 changed files with 4 additions and 4 deletions

View File

@ -89,10 +89,10 @@ type BlockChain struct {
scope event.SubscriptionScope
genesisBlock *types.Block
mu sync.RWMutex // global mutex for locking chain operations
chainmu sync.RWMutex // blockchain insertion lock
procmu sync.RWMutex // block processor lock
insertmu sync.Mutex // block and state insert lock
mu sync.RWMutex // global mutex for locking chain operations
chainmu sync.RWMutex // blockchain insertion lock
procmu sync.RWMutex // block processor lock
insertmu sync.Mutex // block and state insert lock
checkpoint int // checkpoint counts towards the new checkpoint
currentBlock *types.Block // Current head of the block chain