aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-21 06:11:17 +0800
committerobscuren <geffobscura@gmail.com>2014-02-21 06:11:17 +0800
commit06ea7fc8308265e80b24352f676315ed4c826b6a (patch)
tree6071b7c0ebaf1cc84d39b40c902ce15caeec105e /ethchain
parented05779adb27d715b52de99022b6d927e5fe4706 (diff)
downloadgo-tangerine-06ea7fc8308265e80b24352f676315ed4c826b6a.tar
go-tangerine-06ea7fc8308265e80b24352f676315ed4c826b6a.tar.gz
go-tangerine-06ea7fc8308265e80b24352f676315ed4c826b6a.tar.bz2
go-tangerine-06ea7fc8308265e80b24352f676315ed4c826b6a.tar.lz
go-tangerine-06ea7fc8308265e80b24352f676315ed4c826b6a.tar.xz
go-tangerine-06ea7fc8308265e80b24352f676315ed4c826b6a.tar.zst
go-tangerine-06ea7fc8308265e80b24352f676315ed4c826b6a.zip
re: Added contract fees
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/block_manager.go30
1 files changed, 18 insertions, 12 deletions
diff --git a/ethchain/block_manager.go b/ethchain/block_manager.go
index 1fcc06be4..1847ba2d4 100644
--- a/ethchain/block_manager.go
+++ b/ethchain/block_manager.go
@@ -336,19 +336,23 @@ out:
op := OpCode(o)
var fee *big.Int = new(big.Int)
+ var fee2 *big.Int = new(big.Int)
if stepcount > 16 {
fee.Add(fee, StepFee)
}
// Calculate the fees
switch op {
- /*
- FIXME (testnet requires no funds yet)
- case oSSTORE:
- fee.Add(fee, StoreFee)
- case oSLOAD:
- fee.Add(fee, StoreFee)
- */
+ case oSSTORE:
+ y, x := bm.stack.Peekn()
+ val := contract.Addr(ethutil.BigToBytes(x, 256))
+ if val.IsEmpty() && len(y.Bytes()) > 0 {
+ fee2.Add(DataFee, StoreFee)
+ } else {
+ fee2.Sub(DataFee, StoreFee)
+ }
+ case oSLOAD:
+ fee.Add(fee, StoreFee)
case oEXTRO, oBALANCE:
fee.Add(fee, ExtroFee)
case oSHA256, oRIPEMD160, oECMUL, oECADD, oECSIGN, oECRECOVER, oECVALID:
@@ -357,11 +361,12 @@ out:
fee.Add(fee, ContractFee)
}
- if contract.Amount.Cmp(fee) < 0 {
+ tf := new(big.Int).Add(fee, fee2)
+ if contract.Amount.Cmp(tf) < 0 {
break
}
// Add the fee to the total fee. It's subtracted when we're done looping
- totalFee.Add(totalFee, fee)
+ totalFee.Add(totalFee, tf)
if !cb(0) {
break
@@ -608,9 +613,10 @@ out:
case oSSTORE:
// Store Y at index X
y, x := bm.stack.Popn()
- idx := ethutil.BigToBytes(x, 256)
- fmt.Printf(" => %x (%v) @ %v", y.Bytes(), y, ethutil.BigD(idx))
- contract.State().Update(string(idx), string(y.Bytes()))
+ addr := ethutil.BigToBytes(x, 256)
+ fmt.Printf(" => %x (%v) @ %v", y.Bytes(), y, ethutil.BigD(addr))
+ contract.SetAddr(addr, y)
+ //contract.State().Update(string(idx), string(y))
case oJMP:
x := int(bm.stack.Pop().Uint64())
// Set pc to x - 1 (minus one so the incrementing at the end won't effect it)