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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
5e2bf12a
Commit
5e2bf12a
authored
Jun 13, 2014
by
Jeffrey Wilcke
Browse files
Options
Downloads
Patches
Plain Diff
Refactored state transitioning to its own model
parent
d078e9b8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ethchain/deprecated.go
+11
-0
11 additions, 0 deletions
ethchain/deprecated.go
ethchain/state_manager.go
+2
-200
2 additions, 200 deletions
ethchain/state_manager.go
with
13 additions
and
200 deletions
ethchain/deprecated.go
+
11
−
0
View file @
5e2bf12a
...
...
@@ -7,6 +7,17 @@ import (
"math/big"
)
func
(
sm
*
StateManager
)
MakeStateObject
(
state
*
State
,
tx
*
Transaction
)
*
StateObject
{
contract
:=
MakeContract
(
tx
,
state
)
if
contract
!=
nil
{
state
.
states
[
string
(
tx
.
CreationAddress
())]
=
contract
.
state
return
contract
}
return
nil
}
func
(
sm
*
StateManager
)
EvalScript
(
state
*
State
,
script
[]
byte
,
object
*
StateObject
,
tx
*
Transaction
,
block
*
Block
)
(
ret
[]
byte
,
gas
*
big
.
Int
,
err
error
)
{
account
:=
state
.
GetAccount
(
tx
.
Sender
())
...
...
This diff is collapsed.
Click to expand it.
ethchain/state_manager.go
+
2
−
200
View file @
5e2bf12a
...
...
@@ -97,182 +97,6 @@ func (sm *StateManager) BlockChain() *BlockChain {
return
sm
.
bc
}
func
(
sm
*
StateManager
)
MakeStateObject
(
state
*
State
,
tx
*
Transaction
)
*
StateObject
{
contract
:=
MakeContract
(
tx
,
state
)
if
contract
!=
nil
{
state
.
states
[
string
(
tx
.
CreationAddress
())]
=
contract
.
state
return
contract
}
return
nil
}
type
StateTransition
struct
{
coinbase
[]
byte
tx
*
Transaction
gas
*
big
.
Int
state
*
State
block
*
Block
cb
,
rec
,
sen
*
StateObject
}
func
NewStateTransition
(
coinbase
[]
byte
,
gas
*
big
.
Int
,
tx
*
Transaction
,
state
*
State
,
block
*
Block
)
*
StateTransition
{
return
&
StateTransition
{
coinbase
,
tx
,
new
(
big
.
Int
),
state
,
block
,
nil
,
nil
,
nil
}
}
func
(
self
*
StateTransition
)
Coinbase
()
*
StateObject
{
if
self
.
cb
!=
nil
{
return
self
.
cb
}
self
.
cb
=
self
.
state
.
GetAccount
(
self
.
coinbase
)
return
self
.
cb
}
func
(
self
*
StateTransition
)
Sender
()
*
StateObject
{
if
self
.
sen
!=
nil
{
return
self
.
sen
}
self
.
sen
=
self
.
state
.
GetAccount
(
self
.
tx
.
Sender
())
return
self
.
sen
}
func
(
self
*
StateTransition
)
Receiver
()
*
StateObject
{
if
self
.
tx
.
CreatesContract
()
{
return
nil
}
if
self
.
rec
!=
nil
{
return
self
.
rec
}
self
.
rec
=
self
.
state
.
GetAccount
(
self
.
tx
.
Recipient
)
return
self
.
rec
}
func
(
self
*
StateTransition
)
UseGas
(
amount
*
big
.
Int
)
error
{
if
self
.
gas
.
Cmp
(
amount
)
<
0
{
return
OutOfGasError
()
}
self
.
gas
.
Sub
(
self
.
gas
,
amount
)
return
nil
}
func
(
self
*
StateTransition
)
AddGas
(
amount
*
big
.
Int
)
{
self
.
gas
.
Add
(
self
.
gas
,
amount
)
}
func
(
self
*
StateTransition
)
BuyGas
()
error
{
var
err
error
sender
:=
self
.
Sender
()
if
sender
.
Amount
.
Cmp
(
self
.
tx
.
GasValue
())
<
0
{
return
fmt
.
Errorf
(
"Insufficient funds to pre-pay gas. Req %v, has %v"
,
self
.
tx
.
GasValue
(),
self
.
tx
.
Value
)
}
coinbase
:=
self
.
Coinbase
()
err
=
coinbase
.
BuyGas
(
self
.
tx
.
Gas
,
self
.
tx
.
GasPrice
)
if
err
!=
nil
{
return
err
}
self
.
state
.
UpdateStateObject
(
coinbase
)
self
.
AddGas
(
self
.
tx
.
Gas
)
sender
.
SubAmount
(
self
.
tx
.
GasValue
())
return
nil
}
func
(
self
*
StateManager
)
TransitionState
(
st
*
StateTransition
)
(
err
error
)
{
//snapshot := st.state.Snapshot()
defer
func
()
{
if
r
:=
recover
();
r
!=
nil
{
ethutil
.
Config
.
Log
.
Infoln
(
r
)
err
=
fmt
.
Errorf
(
"%v"
,
r
)
}
}()
var
(
tx
=
st
.
tx
sender
=
st
.
Sender
()
receiver
*
StateObject
)
if
sender
.
Nonce
!=
tx
.
Nonce
{
return
NonceError
(
tx
.
Nonce
,
sender
.
Nonce
)
}
sender
.
Nonce
+=
1
defer
func
()
{
// Notify all subscribers
self
.
Ethereum
.
Reactor
()
.
Post
(
"newTx:post"
,
tx
)
}()
if
err
=
st
.
BuyGas
();
err
!=
nil
{
return
err
}
receiver
=
st
.
Receiver
()
if
err
=
st
.
UseGas
(
GasTx
);
err
!=
nil
{
return
err
}
dataPrice
:=
big
.
NewInt
(
int64
(
len
(
tx
.
Data
)))
dataPrice
.
Mul
(
dataPrice
,
GasData
)
if
err
=
st
.
UseGas
(
dataPrice
);
err
!=
nil
{
return
err
}
if
receiver
==
nil
{
// Contract
receiver
=
self
.
MakeStateObject
(
st
.
state
,
tx
)
if
receiver
==
nil
{
return
fmt
.
Errorf
(
"ERR. Unable to create contract with transaction %v"
,
tx
)
}
}
if
err
=
self
.
transferValue
(
st
,
sender
,
receiver
);
err
!=
nil
{
return
err
}
if
tx
.
CreatesContract
()
{
fmt
.
Println
(
Disassemble
(
receiver
.
Init
()))
// Evaluate the initialization script
// and use the return value as the
// script section for the state object.
//script, gas, err = sm.Eval(state, contract.Init(), contract, tx, block)
code
,
err
:=
self
.
Eval
(
st
,
receiver
.
Init
(),
receiver
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Error during init script run %v"
,
err
)
}
receiver
.
script
=
code
}
st
.
state
.
UpdateStateObject
(
sender
)
st
.
state
.
UpdateStateObject
(
receiver
)
return
nil
}
func
(
self
*
StateManager
)
transferValue
(
st
*
StateTransition
,
sender
,
receiver
*
StateObject
)
error
{
if
sender
.
Amount
.
Cmp
(
st
.
tx
.
Value
)
<
0
{
return
fmt
.
Errorf
(
"Insufficient funds to transfer value. Req %v, has %v"
,
st
.
tx
.
Value
,
sender
.
Amount
)
}
// Subtract the amount from the senders account
sender
.
SubAmount
(
st
.
tx
.
Value
)
// Add the amount to receivers account which should conclude this transaction
receiver
.
AddAmount
(
st
.
tx
.
Value
)
ethutil
.
Config
.
Log
.
Debugf
(
"%x => %x (%v) %x
\n
"
,
sender
.
Address
()[
:
4
],
receiver
.
Address
()[
:
4
],
st
.
tx
.
Value
,
st
.
tx
.
Hash
())
return
nil
}
func
(
self
*
StateManager
)
ProcessTransactions
(
coinbase
[]
byte
,
state
*
State
,
block
,
parent
*
Block
,
txs
Transactions
)
(
Receipts
,
Transactions
,
Transactions
,
error
)
{
var
(
receipts
Receipts
...
...
@@ -284,8 +108,8 @@ func (self *StateManager) ProcessTransactions(coinbase []byte, state *State, blo
done
:
for
i
,
tx
:=
range
txs
{
txGas
:=
new
(
big
.
Int
)
.
Set
(
tx
.
Gas
)
st
:=
NewStateTransition
(
coinbase
,
tx
.
Gas
,
tx
,
state
,
block
)
err
=
s
elf
.
TransitionState
(
st
)
st
:=
NewStateTransition
(
coinbase
,
tx
,
state
,
block
)
err
=
s
t
.
TransitionState
()
if
err
!=
nil
{
switch
{
case
IsNonceErr
(
err
)
:
...
...
@@ -315,28 +139,6 @@ done:
return
receipts
,
handled
,
unhandled
,
err
}
func
(
self
*
StateManager
)
Eval
(
st
*
StateTransition
,
script
[]
byte
,
context
*
StateObject
)
(
ret
[]
byte
,
err
error
)
{
var
(
tx
=
st
.
tx
block
=
st
.
block
initiator
=
st
.
Sender
()
)
closure
:=
NewClosure
(
initiator
,
context
,
script
,
st
.
state
,
st
.
gas
,
tx
.
GasPrice
)
vm
:=
NewVm
(
st
.
state
,
self
,
RuntimeVars
{
Origin
:
initiator
.
Address
(),
BlockNumber
:
block
.
BlockInfo
()
.
Number
,
PrevHash
:
block
.
PrevHash
,
Coinbase
:
block
.
Coinbase
,
Time
:
block
.
Time
,
Diff
:
block
.
Difficulty
,
Value
:
tx
.
Value
,
})
ret
,
_
,
err
=
closure
.
Call
(
vm
,
tx
.
Data
,
nil
)
return
}
func
(
sm
*
StateManager
)
Process
(
block
*
Block
,
dontReact
bool
)
error
{
if
!
sm
.
bc
.
HasBlock
(
block
.
PrevHash
)
{
return
ParentError
(
block
.
PrevHash
)
...
...
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