aboutsummaryrefslogtreecommitdiffstats
path: root/light/vm_env.go
diff options
context:
space:
mode:
authorFelföldi Zsolt <zsfelfoldi@gmail.com>2016-11-28 18:31:15 +0800
committerFelix Lange <fjl@twurst.com>2016-11-28 18:31:15 +0800
commit665bb43a4c9e97d6f23de02575b92156881a2db8 (patch)
tree15ce669f45a49b143d07c0b36da74827b42b4594 /light/vm_env.go
parente4bf004560acf18919d5a1b952eeda521ae07aab (diff)
downloadgo-tangerine-665bb43a4c9e97d6f23de02575b92156881a2db8.tar
go-tangerine-665bb43a4c9e97d6f23de02575b92156881a2db8.tar.gz
go-tangerine-665bb43a4c9e97d6f23de02575b92156881a2db8.tar.bz2
go-tangerine-665bb43a4c9e97d6f23de02575b92156881a2db8.tar.lz
go-tangerine-665bb43a4c9e97d6f23de02575b92156881a2db8.tar.xz
go-tangerine-665bb43a4c9e97d6f23de02575b92156881a2db8.tar.zst
go-tangerine-665bb43a4c9e97d6f23de02575b92156881a2db8.zip
light: implemented VMState.Empty() (#3357)
Diffstat (limited to 'light/vm_env.go')
-rw-r--r--light/vm_env.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/light/vm_env.go b/light/vm_env.go
index 5d330b072..d4d7bcce7 100644
--- a/light/vm_env.go
+++ b/light/vm_env.go
@@ -263,6 +263,13 @@ func (s *VMState) Exist(addr common.Address) bool {
return res
}
+// Empty returns true if the account at the given address is considered empty
+func (s *VMState) Empty(addr common.Address) bool {
+ so, err := s.state.GetStateObject(s.ctx, addr)
+ s.errHandler(err)
+ return so == nil || so.empty()
+}
+
// HasSuicided returns true if the given account has been marked for deletion
// or false if the account does not exist
func (s *VMState) HasSuicided(addr common.Address) bool {