good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
1a8894b3
Commit
1a8894b3
authored
6 years ago
by
Jia Chenhui
Committed by
Péter Szilágyi
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
core/state: uniform parameter style (#16398)
- Uniform code style.
parent
80449719
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/state/statedb.go
+10
-10
10 additions, 10 deletions
core/state/statedb.go
with
10 additions
and
10 deletions
core/state/statedb.go
+
10
−
10
View file @
1a8894b3
...
...
@@ -235,10 +235,10 @@ func (self *StateDB) GetCodeHash(addr common.Address) common.Hash {
return
common
.
BytesToHash
(
stateObject
.
CodeHash
())
}
func
(
self
*
StateDB
)
GetState
(
a
common
.
Address
,
b
common
.
Hash
)
common
.
Hash
{
stateObject
:=
self
.
getStateObject
(
a
)
func
(
self
*
StateDB
)
GetState
(
a
ddr
common
.
Address
,
b
hash
common
.
Hash
)
common
.
Hash
{
stateObject
:=
self
.
getStateObject
(
a
ddr
)
if
stateObject
!=
nil
{
return
stateObject
.
GetState
(
self
.
db
,
b
)
return
stateObject
.
GetState
(
self
.
db
,
b
hash
)
}
return
common
.
Hash
{}
}
...
...
@@ -250,8 +250,8 @@ func (self *StateDB) Database() Database {
// StorageTrie returns the storage trie of an account.
// The return value is a copy and is nil for non-existent accounts.
func
(
self
*
StateDB
)
StorageTrie
(
a
common
.
Address
)
Trie
{
stateObject
:=
self
.
getStateObject
(
a
)
func
(
self
*
StateDB
)
StorageTrie
(
a
ddr
common
.
Address
)
Trie
{
stateObject
:=
self
.
getStateObject
(
a
ddr
)
if
stateObject
==
nil
{
return
nil
}
...
...
@@ -271,7 +271,7 @@ func (self *StateDB) HasSuicided(addr common.Address) bool {
* SETTERS
*/
// AddBalance adds amount to the account associated with addr
// AddBalance adds amount to the account associated with addr
.
func
(
self
*
StateDB
)
AddBalance
(
addr
common
.
Address
,
amount
*
big
.
Int
)
{
stateObject
:=
self
.
GetOrNewStateObject
(
addr
)
if
stateObject
!=
nil
{
...
...
@@ -279,7 +279,7 @@ func (self *StateDB) AddBalance(addr common.Address, amount *big.Int) {
}
}
// SubBalance subtracts amount from the account associated with addr
// SubBalance subtracts amount from the account associated with addr
.
func
(
self
*
StateDB
)
SubBalance
(
addr
common
.
Address
,
amount
*
big
.
Int
)
{
stateObject
:=
self
.
GetOrNewStateObject
(
addr
)
if
stateObject
!=
nil
{
...
...
@@ -308,7 +308,7 @@ func (self *StateDB) SetCode(addr common.Address, code []byte) {
}
}
func
(
self
*
StateDB
)
SetState
(
addr
common
.
Address
,
key
common
.
Hash
,
value
common
.
Hash
)
{
func
(
self
*
StateDB
)
SetState
(
addr
common
.
Address
,
key
,
value
common
.
Hash
)
{
stateObject
:=
self
.
GetOrNewStateObject
(
addr
)
if
stateObject
!=
nil
{
stateObject
.
SetState
(
self
.
db
,
key
,
value
)
...
...
@@ -337,7 +337,7 @@ func (self *StateDB) Suicide(addr common.Address) bool {
}
//
// Setting, updating & deleting state object methods
// Setting, updating & deleting state object methods
.
//
// updateStateObject writes the given object to the trie.
...
...
@@ -388,7 +388,7 @@ func (self *StateDB) setStateObject(object *stateObject) {
self
.
stateObjects
[
object
.
Address
()]
=
object
}
// Retrieve a state object or create a new state object if nil
// Retrieve a state object or create a new state object if nil
.
func
(
self
*
StateDB
)
GetOrNewStateObject
(
addr
common
.
Address
)
*
stateObject
{
stateObject
:=
self
.
getStateObject
(
addr
)
if
stateObject
==
nil
||
stateObject
.
deleted
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment