fix dereference bug

This commit is contained in:
vyzo 2020-08-05 18:28:04 +03:00
parent a8b0db91e8
commit 829c7953d5

View File

@ -219,7 +219,7 @@ func (mp *MessagePool) createMessageChains(actor address.Address, mset *msgSet,
chain.msgs = []*types.SignedMessage{m}
chain.gasReward = rewards[i]
chain.gasLimit = m.Message.GasLimit
chain.gasPerf = mp.getGasPerf(curChain.gasReward, curChain.gasLimit)
chain.gasPerf = mp.getGasPerf(chain.gasReward, chain.gasLimit)
chain.valid = true
return chain
}