Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Jun 30, 2024
1 parent 89af425 commit df69a94
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vms/proposervm/batched_vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,5 @@ func (vm *VM) getStatelessBlk(blkID ids.ID) (statelessblock.Block, error) {
if currentBlk, exists := vm.verifiedBlocks[blkID]; exists {
return currentBlk.getStatelessBlk(), nil
}
statelessBlock, err := vm.State.GetBlock(blkID)
return statelessBlock, err
return vm.State.GetBlock(blkID)
}

0 comments on commit df69a94

Please sign in to comment.