aboutsummaryrefslogtreecommitdiffstats
path: root/params/gas_table.go
diff options
context:
space:
mode:
authorgary rong <garyrong0905@gmail.com>2018-07-24 23:06:40 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-07-24 23:06:40 +0800
commit2433349c808fad601419d1f06275bec5b6a93ec8 (patch)
tree883b11148d15fd8a191131a9aaf17731f28856d0 /params/gas_table.go
parentcab1cff11cbcd4ff60f1a149deb71ec87413b487 (diff)
downloadgo-tangerine-2433349c808fad601419d1f06275bec5b6a93ec8.tar
go-tangerine-2433349c808fad601419d1f06275bec5b6a93ec8.tar.gz
go-tangerine-2433349c808fad601419d1f06275bec5b6a93ec8.tar.bz2
go-tangerine-2433349c808fad601419d1f06275bec5b6a93ec8.tar.lz
go-tangerine-2433349c808fad601419d1f06275bec5b6a93ec8.tar.xz
go-tangerine-2433349c808fad601419d1f06275bec5b6a93ec8.tar.zst
go-tangerine-2433349c808fad601419d1f06275bec5b6a93ec8.zip
core/vm, params: implement EXTCODEHASH opcode (#17202)
* core/vm, params: implement EXTCODEHASH opcode * core, params: tiny fixes and polish * core: add function description
Diffstat (limited to 'params/gas_table.go')
-rw-r--r--params/gas_table.go17
1 files changed, 16 insertions, 1 deletions
diff --git a/params/gas_table.go b/params/gas_table.go
index d33bebbe5..6c4a38269 100644
--- a/params/gas_table.go
+++ b/params/gas_table.go
@@ -20,6 +20,7 @@ package params
type GasTable struct {
ExtcodeSize uint64
ExtcodeCopy uint64
+ ExtcodeHash uint64
Balance uint64
SLoad uint64
Calls uint64
@@ -63,7 +64,7 @@ var (
CreateBySuicide: 25000,
}
// GasTableEIP158 contain the gas re-prices for
- // the EIP15* phase.
+ // the EIP155/EIP158 phase.
GasTableEIP158 = GasTable{
ExtcodeSize: 700,
ExtcodeCopy: 700,
@@ -75,4 +76,18 @@ var (
CreateBySuicide: 25000,
}
+ // GasTableConstantinople contain the gas re-prices for
+ // the constantinople phase.
+ GasTableConstantinople = GasTable{
+ ExtcodeSize: 700,
+ ExtcodeCopy: 700,
+ ExtcodeHash: 400,
+ Balance: 400,
+ SLoad: 200,
+ Calls: 700,
+ Suicide: 5000,
+ ExpByte: 50,
+
+ CreateBySuicide: 25000,
+ }
)