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
8dbca75d
Commit
8dbca75d
authored
Dec 04, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip mining on transactions that don't meet the min accepted gas price
parent
3db9c800
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
26 deletions
+32
-26
block_manager.go
core/block_manager.go
+12
-16
transaction_pool.go
core/transaction_pool.go
+4
-4
miner.go
miner/miner.go
+16
-6
No files found.
core/block_manager.go
View file @
8dbca75d
...
...
@@ -231,7 +231,7 @@ func (sm *BlockManager) ProcessWithParent(block, parent *types.Block) (td *big.I
return
}
_
,
err
=
sm
.
TransitionState
(
state
,
parent
,
block
)
receipts
,
err
:
=
sm
.
TransitionState
(
state
,
parent
,
block
)
if
err
!=
nil
{
return
}
...
...
@@ -242,26 +242,22 @@ func (sm *BlockManager) ProcessWithParent(block, parent *types.Block) (td *big.I
return
}
/*
receiptSha := types.DeriveSha(receipts)
if bytes.Compare(receiptSha, block.ReceiptSha) != 0 {
err = fmt.Errorf("validating receipt root. received=%x got=%x", block.ReceiptSha, receiptSha)
return
}
*/
receiptSha
:=
types
.
DeriveSha
(
receipts
)
if
bytes
.
Compare
(
receiptSha
,
block
.
ReceiptSha
)
!=
0
{
err
=
fmt
.
Errorf
(
"validating receipt root. received=%x got=%x"
,
block
.
ReceiptSha
,
receiptSha
)
return
}
if
err
=
sm
.
AccumelateRewards
(
state
,
block
,
parent
);
err
!=
nil
{
return
}
/*
//block.receipts = receipts // although this isn't necessary it be in the future
rbloom := types.CreateBloom(receipts)
if bytes.Compare(rbloom, block.LogsBloom) != 0 {
err = fmt.Errorf("unable to replicate block's bloom=%x", rbloom)
return
}
*/
//block.receipts = receipts // although this isn't necessary it be in the future
rbloom
:=
types
.
CreateBloom
(
receipts
)
if
bytes
.
Compare
(
rbloom
,
block
.
LogsBloom
)
!=
0
{
err
=
fmt
.
Errorf
(
"unable to replicate block's bloom=%x"
,
rbloom
)
return
}
state
.
Update
(
ethutil
.
Big0
)
...
...
core/transaction_pool.go
View file @
8dbca75d
...
...
@@ -115,10 +115,6 @@ func (pool *TxPool) ValidateTransaction(tx *types.Transaction) error {
return
fmt
.
Errorf
(
"tx.v != (28 || 27)"
)
}
if
tx
.
GasPrice
.
Cmp
(
MinGasPrice
)
<
0
{
return
fmt
.
Errorf
(
"Gas price to low. Require %v > Got %v"
,
MinGasPrice
,
tx
.
GasPrice
)
}
// Get the sender
sender
:=
pool
.
Ethereum
.
BlockManager
()
.
CurrentState
()
.
GetAccount
(
tx
.
Sender
())
...
...
@@ -169,6 +165,10 @@ func (self *TxPool) Add(tx *types.Transaction) error {
return
nil
}
func
(
self
*
TxPool
)
Size
()
int
{
return
self
.
pool
.
Len
()
}
func
(
pool
*
TxPool
)
CurrentTransactions
()
[]
*
types
.
Transaction
{
pool
.
mutex
.
Lock
()
defer
pool
.
mutex
.
Unlock
()
...
...
miner/miner.go
View file @
8dbca75d
...
...
@@ -228,23 +228,33 @@ func (self *Miner) mine() {
func
(
self
*
Miner
)
finiliseTxs
()
types
.
Transactions
{
// Sort the transactions by nonce in case of odd network propagation
var
txs
types
.
Transactions
actualSize
:=
len
(
self
.
localTxs
)
// See copy below
txs
:=
make
(
types
.
Transactions
,
actualSize
+
self
.
eth
.
TxPool
()
.
Size
())
state
:=
self
.
eth
.
BlockManager
()
.
TransState
()
// XXX This has to change. Coinbase is, for new, same as key.
key
:=
self
.
eth
.
KeyManager
()
for
_
,
ltx
:=
range
self
.
localTxs
{
for
i
,
ltx
:=
range
self
.
localTxs
{
tx
:=
types
.
NewTransactionMessage
(
ltx
.
To
,
ethutil
.
Big
(
ltx
.
Value
),
ethutil
.
Big
(
ltx
.
Gas
),
ethutil
.
Big
(
ltx
.
GasPrice
),
ltx
.
Data
)
tx
.
Nonce
=
state
.
GetNonce
(
self
.
Coinbase
)
state
.
SetNonce
(
self
.
Coinbase
,
tx
.
Nonce
+
1
)
tx
.
Sign
(
key
.
PrivateKey
())
txs
=
append
(
txs
,
tx
)
txs
[
i
]
=
tx
}
txs
=
append
(
txs
,
self
.
eth
.
TxPool
()
.
CurrentTransactions
()
...
)
sort
.
Sort
(
types
.
TxByNonce
{
txs
})
// Faster than append
for
_
,
tx
:=
range
self
.
eth
.
TxPool
()
.
CurrentTransactions
()
{
if
tx
.
GasPrice
.
Cmp
(
self
.
MinAcceptedGasPrice
)
>=
0
{
txs
[
actualSize
]
=
tx
actualSize
++
}
}
newTransactions
:=
make
(
types
.
Transactions
,
actualSize
)
copy
(
newTransactions
,
txs
[
:
actualSize
])
sort
.
Sort
(
types
.
TxByNonce
{
newTransactions
})
return
tx
s
return
newTransaction
s
}
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