diff options
author | Aaron Buchwald <[email protected]> | 2020-12-17 14:14:19 -0500 |
---|---|---|
committer | Aaron Buchwald <[email protected]> | 2020-12-17 14:14:19 -0500 |
commit | b89114d6abd140dcd1fbf6e4e64fcba508a9f59c (patch) | |
tree | f83242d6e489f675eadf038048fcd9a5db536705 /plugin/evm | |
parent | 2d0a37c6490dc9a4ec36ee4ebbed01c790f0426a (diff) |
Address comments
Diffstat (limited to 'plugin/evm')
-rw-r--r-- | plugin/evm/vm.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go index c9bdad9..1caa9e9 100644 --- a/plugin/evm/vm.go +++ b/plugin/evm/vm.go @@ -739,7 +739,7 @@ func (vm *VM) writeBackMetadata() { // awaitTxPoolStabilized waits for a txPoolHead channel event // and notifies the VM when the tx pool has stabilized to the // expected block hash -// Waits for signal to shutdown from txPoolStabilizedShutdownChan chan +// Waits for signal to shutdown from [vm.shutdownChan] func (vm *VM) awaitTxPoolStabilized() { defer vm.shutdownWg.Done() for { |