This commit is contained in:
obscuren 2014-01-04 00:31:42 +01:00
parent 15bf5ee4db
commit a42ebd9ed6

View File

@ -62,7 +62,10 @@ func (bm *BlockManager) ProcessContract(tx *Transaction, block *Block, lockChan
// Process contract
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
})