Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
cda88ce3
Commit
cda88ce3
authored
Mar 13, 2015
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented a manage state for keeping track of nonces
parent
aa9f981d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
63 additions
and
6 deletions
+63
-6
chain_manager.go
core/chain_manager.go
+6
-5
managed_state.go
state/managed_state.go
+56
-0
xeth.go
xeth/xeth.go
+1
-1
No files found.
core/chain_manager.go
View file @
cda88ce3
...
...
@@ -86,7 +86,7 @@ type ChainManager struct {
lastBlockHash
[]
byte
transState
*
state
.
StateDB
txState
*
state
.
StateDB
txState
*
state
.
ManagedState
quit
chan
struct
{}
}
...
...
@@ -95,7 +95,8 @@ func NewChainManager(blockDb, stateDb ethutil.Database, mux *event.TypeMux) *Cha
bc
:=
&
ChainManager
{
blockDb
:
blockDb
,
stateDb
:
stateDb
,
genesisBlock
:
GenesisBlock
(
stateDb
),
eventMux
:
mux
,
quit
:
make
(
chan
struct
{})}
bc
.
setLastBlock
()
bc
.
transState
=
bc
.
State
()
.
Copy
()
bc
.
txState
=
bc
.
State
()
.
Copy
()
// Take ownership of this particular state
bc
.
txState
=
state
.
ManageState
(
bc
.
State
()
.
Copy
())
go
bc
.
update
()
return
bc
...
...
@@ -144,17 +145,17 @@ func (self *ChainManager) TransState() *state.StateDB {
return
self
.
transState
}
func
(
self
*
ChainManager
)
TxState
()
*
state
.
StateDB
{
func
(
self
*
ChainManager
)
TxState
()
*
state
.
ManagedState
{
self
.
tsmu
.
RLock
()
defer
self
.
tsmu
.
RUnlock
()
return
self
.
txState
}
func
(
self
*
ChainManager
)
setTxState
(
state
*
state
.
StateDB
)
{
func
(
self
*
ChainManager
)
setTxState
(
state
db
*
state
.
StateDB
)
{
self
.
tsmu
.
Lock
()
defer
self
.
tsmu
.
Unlock
()
self
.
txState
=
state
self
.
txState
=
state
.
ManageState
(
statedb
)
}
func
(
self
*
ChainManager
)
setTransState
(
statedb
*
state
.
StateDB
)
{
...
...
state/managed_state.go
0 → 100644
View file @
cda88ce3
package
state
import
"sync"
type
ManagedState
struct
{
*
StateDB
mu
sync
.
RWMutex
accounts
map
[
string
]
*
StateObject
}
func
ManageState
(
statedb
*
StateDB
)
*
ManagedState
{
return
&
ManagedState
{
StateDB
:
statedb
,
accounts
:
make
(
map
[
string
]
*
StateObject
),
}
}
func
(
ms
*
ManagedState
)
IncrementNonce
(
addr
[]
byte
)
{
ms
.
mu
.
Lock
()
defer
ms
.
mu
.
Unlock
()
ms
.
getAccount
(
addr
)
.
nonce
++
}
func
(
ms
*
ManagedState
)
DecrementNonce
(
addr
[]
byte
)
{
// Decrementing a nonce does not mean we are interested in the account
// incrementing only happens if you control the account, therefor
// incrementing behaves differently from decrementing
if
ms
.
hasAccount
(
addr
)
{
ms
.
mu
.
Lock
()
defer
ms
.
mu
.
Unlock
()
ms
.
getAccount
(
addr
)
.
nonce
--
}
}
func
(
ms
*
ManagedState
)
GetNonce
(
addr
[]
byte
)
uint64
{
ms
.
mu
.
RLock
()
defer
ms
.
mu
.
RUnlock
()
return
ms
.
getAccount
(
addr
)
.
nonce
}
func
(
ms
*
ManagedState
)
hasAccount
(
addr
[]
byte
)
bool
{
_
,
ok
:=
ms
.
accounts
[
string
(
addr
)]
return
ok
}
func
(
ms
*
ManagedState
)
getAccount
(
addr
[]
byte
)
*
StateObject
{
if
_
,
ok
:=
ms
.
accounts
[
string
(
addr
)];
!
ok
{
ms
.
accounts
[
string
(
addr
)]
=
ms
.
GetOrNewStateObject
(
addr
)
}
return
ms
.
accounts
[
string
(
addr
)]
}
xeth/xeth.go
View file @
cda88ce3
...
...
@@ -362,7 +362,7 @@ func (self *XEth) Transact(fromStr, toStr, valueStr, gasStr, gasPriceStr, codeSt
if
err
:=
self
.
eth
.
TxPool
()
.
Add
(
tx
);
err
!=
nil
{
return
""
,
err
}
state
.
SetNonce
(
from
,
nonce
+
1
)
state
.
IncrementNonce
(
from
)
if
contractCreation
{
addr
:=
core
.
AddressFromMessage
(
tx
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment