-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2145 from CortexFoundation/dev
core/state: semantic journalling
- Loading branch information
Showing
6 changed files
with
257 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// Copyright 2023 The CortexTheseus Authors | ||
// This file is part of the CortexFoundation library. | ||
// | ||
// The CortexFoundation library is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU Lesser General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// The CortexFoundation library is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU Lesser General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public License | ||
// along with the CortexFoundation library. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package state | ||
|
||
import ( | ||
"github.com/CortexFoundation/CortexTheseus/common" | ||
"math/big" | ||
) | ||
|
||
type ( | ||
uploadChange struct { | ||
account *common.Address | ||
prev *big.Int | ||
} | ||
numChange struct { | ||
account *common.Address | ||
prev *big.Int | ||
} | ||
) | ||
|
||
func (ch uploadChange) copy() journalEntry { | ||
return uploadChange{ | ||
account: ch.account, | ||
prev: new(big.Int).Set(ch.prev), | ||
} | ||
} | ||
|
||
func (ch numChange) copy() journalEntry { | ||
return numChange{ | ||
account: ch.account, | ||
prev: new(big.Int).Set(ch.prev), | ||
} | ||
} | ||
|
||
func (ch uploadChange) revert(s *StateDB) { | ||
s.getStateObject(*ch.account).setUpload(ch.prev) | ||
} | ||
|
||
func (ch uploadChange) dirtied() *common.Address { | ||
return ch.account | ||
} | ||
|
||
func (ch numChange) revert(s *StateDB) { | ||
s.getStateObject(*ch.account).setNum(ch.prev) | ||
} | ||
|
||
func (ch numChange) dirtied() *common.Address { | ||
return ch.account | ||
} | ||
|
||
func (j *journal) uploadChange(addr common.Address, previous *big.Int) { | ||
j.append(uploadChange{ | ||
account: &addr, | ||
prev: new(big.Int).Set(previous), | ||
}) | ||
} | ||
|
||
func (j *journal) numChange(addr common.Address, previous *big.Int) { | ||
j.append(numChange{ | ||
account: &addr, | ||
prev: new(big.Int).Set(previous), | ||
}) | ||
} |
Oops, something went wrong.