fix dereference bug
This commit is contained in:
parent
a8b0db91e8
commit
829c7953d5
@ -219,7 +219,7 @@ func (mp *MessagePool) createMessageChains(actor address.Address, mset *msgSet,
|
|||||||
chain.msgs = []*types.SignedMessage{m}
|
chain.msgs = []*types.SignedMessage{m}
|
||||||
chain.gasReward = rewards[i]
|
chain.gasReward = rewards[i]
|
||||||
chain.gasLimit = m.Message.GasLimit
|
chain.gasLimit = m.Message.GasLimit
|
||||||
chain.gasPerf = mp.getGasPerf(curChain.gasReward, curChain.gasLimit)
|
chain.gasPerf = mp.getGasPerf(chain.gasReward, chain.gasLimit)
|
||||||
chain.valid = true
|
chain.valid = true
|
||||||
return chain
|
return chain
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user