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
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
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
8310bcda
Commit
8310bcda
authored
9 years ago
by
Jeffrey Wilcke
Browse files
Options
Downloads
Patches
Plain Diff
state: fixed mutex lockes
parent
474aa924
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/managed_state.go
+14
-2
14 additions, 2 deletions
core/state/managed_state.go
with
14 additions
and
2 deletions
core/state/managed_state.go
+
14
−
2
View file @
8310bcda
...
...
@@ -37,7 +37,7 @@ func (ms *ManagedState) SetState(statedb *StateDB) {
// RemoveNonce removed the nonce from the managed state and all future pending nonces
func
(
ms
*
ManagedState
)
RemoveNonce
(
addr
common
.
Address
,
n
uint64
)
{
if
ms
.
H
asAccount
(
addr
)
{
if
ms
.
h
asAccount
(
addr
)
{
ms
.
mu
.
Lock
()
defer
ms
.
mu
.
Unlock
()
...
...
@@ -67,7 +67,10 @@ func (ms *ManagedState) NewNonce(addr common.Address) uint64 {
// GetNonce returns the canonical nonce for the managed or unmanged account
func
(
ms
*
ManagedState
)
GetNonce
(
addr
common
.
Address
)
uint64
{
if
ms
.
HasAccount
(
addr
)
{
ms
.
mu
.
RLock
()
defer
ms
.
mu
.
RUnlock
()
if
ms
.
hasAccount
(
addr
)
{
account
:=
ms
.
getAccount
(
addr
)
return
uint64
(
len
(
account
.
nonces
))
+
account
.
nstart
}
else
{
...
...
@@ -77,6 +80,9 @@ func (ms *ManagedState) GetNonce(addr common.Address) uint64 {
// SetNonce sets the new canonical nonce for the managed state
func
(
ms
*
ManagedState
)
SetNonce
(
addr
common
.
Address
,
nonce
uint64
)
{
ms
.
mu
.
Lock
()
defer
ms
.
mu
.
Unlock
()
so
:=
ms
.
GetOrNewStateObject
(
addr
)
so
.
SetNonce
(
nonce
)
...
...
@@ -85,6 +91,12 @@ func (ms *ManagedState) SetNonce(addr common.Address, nonce uint64) {
// HasAccount returns whether the given address is managed or not
func
(
ms
*
ManagedState
)
HasAccount
(
addr
common
.
Address
)
bool
{
ms
.
mu
.
RLock
()
defer
ms
.
mu
.
RUnlock
()
return
ms
.
hasAccount
(
addr
)
}
func
(
ms
*
ManagedState
)
hasAccount
(
addr
common
.
Address
)
bool
{
_
,
ok
:=
ms
.
accounts
[
addr
.
Str
()]
return
ok
}
...
...
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