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
9f62d441
Commit
9f62d441
authored
Jun 16, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved gas limit err check to buy gas
parent
b8362674
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
58 additions
and
41 deletions
+58
-41
state_manager.go
ethchain/state_manager.go
+5
-3
state_object.go
ethchain/state_object.go
+18
-3
state_transition.go
ethchain/state_transition.go
+2
-2
vm.go
ethchain/vm.go
+31
-32
miner.go
ethminer/miner.go
+2
-1
No files found.
ethchain/state_manager.go
View file @
9f62d441
...
...
@@ -97,7 +97,7 @@ func (sm *StateManager) BlockChain() *BlockChain {
return
sm
.
bc
}
func
(
self
*
StateManager
)
ProcessTransactions
(
coinbase
[]
byte
,
state
*
State
,
block
,
parent
*
Block
,
txs
Transactions
)
(
Receipts
,
Transactions
,
Transactions
,
error
)
{
func
(
self
*
StateManager
)
ProcessTransactions
(
coinbase
*
StateObject
,
state
*
State
,
block
,
parent
*
Block
,
txs
Transactions
)
(
Receipts
,
Transactions
,
Transactions
,
error
)
{
var
(
receipts
Receipts
handled
,
unhandled
Transactions
...
...
@@ -177,9 +177,12 @@ func (sm *StateManager) ProcessBlock(state *State, parent, block *Block, dontRea
}
fmt
.
Println
(
block
.
Receipts
())
coinbase
:=
state
.
GetOrNewStateObject
(
block
.
Coinbase
)
coinbase
.
gasPool
=
block
.
CalcGasLimit
(
parent
)
// Process the transactions on to current block
//sm.ApplyTransactions(block.Coinbase, state, parent, block.Transactions())
sm
.
ProcessTransactions
(
block
.
C
oinbase
,
state
,
block
,
parent
,
block
.
Transactions
())
sm
.
ProcessTransactions
(
c
oinbase
,
state
,
block
,
parent
,
block
.
Transactions
())
// Block validation
if
err
:=
sm
.
ValidateBlock
(
block
);
err
!=
nil
{
...
...
@@ -194,7 +197,6 @@ func (sm *StateManager) ProcessBlock(state *State, parent, block *Block, dontRea
return
err
}
//if !sm.compState.Cmp(state) {
if
!
block
.
State
()
.
Cmp
(
state
)
{
return
fmt
.
Errorf
(
"Invalid merkle root.
\n
rec: %x
\n
is: %x"
,
block
.
State
()
.
trie
.
Root
,
state
.
trie
.
Root
)
}
...
...
ethchain/state_object.go
View file @
9f62d441
...
...
@@ -17,6 +17,11 @@ type StateObject struct {
state
*
State
script
[]
byte
initScript
[]
byte
// Total gas pool is the total amount of gas currently
// left if this object is the coinbase. Gas is directly
// purchased of the coinbase.
gasPool
*
big
.
Int
}
// Converts an transaction in to a state object
...
...
@@ -139,14 +144,22 @@ func (c *StateObject) ConvertGas(gas, price *big.Int) error {
return
nil
}
func
(
self
*
StateObject
)
SetGasPool
(
gasLimit
*
big
.
Int
)
{
self
.
gasPool
=
new
(
big
.
Int
)
.
Set
(
gasLimit
)
ethutil
.
Config
.
Log
.
Printf
(
ethutil
.
LogLevelSystem
,
"%x fuel (+ %v)"
,
self
.
Address
(),
self
.
gasPool
)
}
func
(
self
*
StateObject
)
BuyGas
(
gas
,
price
*
big
.
Int
)
error
{
if
self
.
gasPool
.
Cmp
(
gas
)
<
0
{
return
GasLimitError
(
self
.
gasPool
,
gas
)
}
rGas
:=
new
(
big
.
Int
)
.
Set
(
gas
)
rGas
.
Mul
(
rGas
,
price
)
self
.
AddAmount
(
rGas
)
// TODO Do sub from TotalGasPool
// and check if enough left
return
nil
}
...
...
@@ -158,7 +171,9 @@ func (self *StateObject) Copy() *StateObject {
stCopy
.
ScriptHash
=
make
([]
byte
,
len
(
self
.
ScriptHash
))
copy
(
stCopy
.
ScriptHash
,
self
.
ScriptHash
)
stCopy
.
Nonce
=
self
.
Nonce
if
self
.
state
!=
nil
{
stCopy
.
state
=
self
.
state
.
Copy
()
}
stCopy
.
script
=
make
([]
byte
,
len
(
self
.
script
))
copy
(
stCopy
.
script
,
self
.
script
)
stCopy
.
initScript
=
make
([]
byte
,
len
(
self
.
initScript
))
...
...
ethchain/state_transition.go
View file @
9f62d441
...
...
@@ -32,8 +32,8 @@ type StateTransition struct {
cb
,
rec
,
sen
*
StateObject
}
func
NewStateTransition
(
coinbase
[]
byte
,
tx
*
Transaction
,
state
*
State
,
block
*
Block
)
*
StateTransition
{
return
&
StateTransition
{
coinbase
,
tx
,
new
(
big
.
Int
),
state
,
block
,
nil
,
nil
,
nil
}
func
NewStateTransition
(
coinbase
*
StateObject
,
tx
*
Transaction
,
state
*
State
,
block
*
Block
)
*
StateTransition
{
return
&
StateTransition
{
coinbase
.
Address
(),
tx
,
new
(
big
.
Int
),
state
,
block
,
coinbase
,
nil
,
nil
}
}
func
(
self
*
StateTransition
)
Coinbase
()
*
StateObject
{
...
...
ethchain/vm.go
View file @
9f62d441
...
...
@@ -169,7 +169,7 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
case
CALL
:
require
(
7
)
gas
.
Set
(
GasCall
)
addStepGasUsage
(
stack
.
data
[
stack
.
Len
()
-
1
])
addStepGasUsage
(
stack
.
data
[
stack
.
Len
()
-
2
])
x
:=
stack
.
data
[
stack
.
Len
()
-
6
]
.
Uint64
()
+
stack
.
data
[
stack
.
Len
()
-
7
]
.
Uint64
()
y
:=
stack
.
data
[
stack
.
Len
()
-
4
]
.
Uint64
()
+
stack
.
data
[
stack
.
Len
()
-
5
]
.
Uint64
()
...
...
@@ -529,6 +529,7 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
vm
.
state
.
UpdateStateObject
(
contract
)
}
case
CALL
:
// TODO RE-WRITE
require
(
7
)
// Closure addr
addr
:=
stack
.
Pop
()
...
...
@@ -538,25 +539,22 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
inSize
,
inOffset
:=
stack
.
Popn
()
// Pop return size and offset
retSize
,
retOffset
:=
stack
.
Popn
()
// Make sure there's enough gas
if
closure
.
Gas
.
Cmp
(
gas
)
<
0
{
stack
.
Push
(
ethutil
.
BigFalse
)
break
}
// Get the arguments from the memory
args
:=
mem
.
Get
(
inOffset
.
Int64
(),
inSize
.
Int64
())
snapshot
:=
vm
.
state
.
Snapshot
()
closure
.
object
.
Nonce
+=
1
if
closure
.
object
.
Amount
.
Cmp
(
value
)
<
0
{
ethutil
.
Config
.
Log
.
Debugf
(
"Insufficient funds to transfer value. Req %v, has %v"
,
value
,
closure
.
object
.
Amount
)
stack
.
Push
(
ethutil
.
BigFalse
)
}
else
{
// Fetch the contract which will serve as the closure body
contract
:=
vm
.
state
.
GetStateObject
(
addr
.
Bytes
())
if
contract
!=
nil
{
// Prepay for the gas
//closure.UseGas(gas)
// Add the value to the state object
contract
.
AddAmount
(
value
)
...
...
@@ -579,6 +577,7 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
ethutil
.
Config
.
Log
.
Debugf
(
"Contract %x not found
\n
"
,
addr
.
Bytes
())
stack
.
Push
(
ethutil
.
BigFalse
)
}
}
case
RETURN
:
require
(
2
)
size
,
offset
:=
stack
.
Popn
()
...
...
ethminer/miner.go
View file @
9f62d441
...
...
@@ -139,7 +139,8 @@ func (self *Miner) mineNewBlock() {
// Accumulate all valid transaction and apply them to the new state
// Error may be ignored. It's not important during mining
receipts
,
txs
,
unhandledTxs
,
err
:=
stateManager
.
ProcessTransactions
(
self
.
block
.
Coinbase
,
self
.
block
.
State
(),
self
.
block
,
self
.
block
,
self
.
txs
)
coinbase
:=
self
.
block
.
State
()
.
GetOrNewStateObject
(
self
.
block
.
Coinbase
)
receipts
,
txs
,
unhandledTxs
,
err
:=
stateManager
.
ProcessTransactions
(
coinbase
,
self
.
block
.
State
(),
self
.
block
,
self
.
block
,
self
.
txs
)
if
err
!=
nil
{
ethutil
.
Config
.
Log
.
Debugln
(
"[MINER]"
,
err
)
}
...
...
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