log:=fmt.Sprintf("(%d) Actions and (%d) OutTxs present for (%s), yet there appeared to be (%d) dangling Actions.",len(voter.Actions),len(voter.OutTxs),txID.String(),len(indices))
ctx.Logger().Debug(log)
continue
}
// Update the voter's FinalisedHeight to give another MaxOutboundAttempts.
voter.FinalisedHeight=ctx.BlockHeight()
voter.OutboundHeight=ctx.BlockHeight()
for_,index:=rangeindices{
// Use a pointer to update the voter as well.
actionItem:=&voter.Actions[index]
// Update the vault pubkey.
actionItem.VaultPubKey=vaultPubKey
// Update the Actions item's MaxGas and GasRate.
// Note that nothing in this function should require a GasManager BeginBlock.