mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-16 13:06:40 +00:00
block
This commit is contained in:
parent
15bf5ee4db
commit
a42ebd9ed6
1 changed files with 4 additions and 1 deletions
|
|
@ -62,7 +62,10 @@ func (bm *BlockManager) ProcessContract(tx *Transaction, block *Block, lockChan
|
||||||
|
|
||||||
// Process contract
|
// Process contract
|
||||||
bm.vm.ProcContract(tx, block, func(opType OpType) bool {
|
bm.vm.ProcContract(tx, block, func(opType OpType) bool {
|
||||||
// TODO calculate fees
|
// TODO turn on once big ints are in place
|
||||||
|
//if !block.PayFee(tx.Hash(), StepFee.Uint64()) {
|
||||||
|
// return false
|
||||||
|
//}
|
||||||
|
|
||||||
return true // Continue
|
return true // Continue
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue