diff options
author | Determinant <[email protected]> | 2020-08-19 20:32:18 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-08-19 20:32:18 -0400 |
commit | 1e9599e88a5d88e0090b0ebddfae756e343e605a (patch) | |
tree | 92300da4e82db8755ea07f84be61def1079e2840 /plugin/evm/block.go | |
parent | ec103c07738b3db70501dee7a7da113edbb68875 (diff) |
make the basic X-to-C logic work
Diffstat (limited to 'plugin/evm/block.go')
-rw-r--r-- | plugin/evm/block.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/evm/block.go b/plugin/evm/block.go index a2ffb69..1cbf0b7 100644 --- a/plugin/evm/block.go +++ b/plugin/evm/block.go @@ -69,7 +69,7 @@ func (b *Block) Verify() error { path := []*Block{} inputs := new(ids.Set) for { - if p.Status() == choices.Accepted { + if p.Status() == choices.Accepted || p.(*Block).ethBlock.Hash() == vm.genesisHash { break } if ret, hit := vm.blockAtomicInputCache.Get(p.ID()); hit { |