aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/statedb.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2015-07-01 18:07:14 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2015-07-04 08:51:36 +0800
commitab16ce70fc68d9ab1b7d8cda57c180b4785cab6a (patch)
treeb6d294b8fbe8ba7f34a9f78f676ca99758a58bf5 /core/state/statedb.go
parent08caeedd842526373d30a929e63101a5fe7fda55 (diff)
downloadgo-tangerine-ab16ce70fc68d9ab1b7d8cda57c180b4785cab6a.tar
go-tangerine-ab16ce70fc68d9ab1b7d8cda57c180b4785cab6a.tar.gz
go-tangerine-ab16ce70fc68d9ab1b7d8cda57c180b4785cab6a.tar.bz2
go-tangerine-ab16ce70fc68d9ab1b7d8cda57c180b4785cab6a.tar.lz
go-tangerine-ab16ce70fc68d9ab1b7d8cda57c180b4785cab6a.tar.xz
go-tangerine-ab16ce70fc68d9ab1b7d8cda57c180b4785cab6a.tar.zst
go-tangerine-ab16ce70fc68d9ab1b7d8cda57c180b4785cab6a.zip
core, miner, tests: renamed state methods
* Update => SyncIntermediate * Added SyncObjects SyncIntermediate only updates whatever has changed, but, as a side effect, requires much more disk space. SyncObjects will only sync whatever is required for a block and will not save intermediate state to disk. As drawback this requires more time when more txs come in.
Diffstat (limited to 'core/state/statedb.go')
-rw-r--r--core/state/statedb.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/state/statedb.go b/core/state/statedb.go
index bd4ff6ff3..4ccda1fc7 100644
--- a/core/state/statedb.go
+++ b/core/state/statedb.go
@@ -324,7 +324,8 @@ func (self *StateDB) Refunds() *big.Int {
return self.refund
}
-func (self *StateDB) Update() {
+// SyncIntermediate updates the intermediate state and all mid steps
+func (self *StateDB) SyncIntermediate() {
self.refund = new(big.Int)
for _, stateObject := range self.stateObjects {
@@ -341,7 +342,8 @@ func (self *StateDB) Update() {
}
}
-func (self *StateDB) CleanUpdate() {
+// SyncObjects syncs the changed objects to the trie
+func (self *StateDB) SyncObjects() {
self.trie = trie.NewSecure(self.root[:], self.db)
self.refund = new(big.Int)