mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-01 17:42:16 +00:00
19 lines
369 B
Go
19 lines
369 B
Go
package vm
|
|
|
|
const (
|
|
GasSha3 int64 = 1
|
|
GasGetAccount int64 = 1
|
|
GasStorageUpdate int64 = 1
|
|
|
|
GasBaseOp int64 = 0 // TODO: make this 1
|
|
GasStackOp int64 = 1
|
|
|
|
GasEcRecover int64 = 1
|
|
GasSha256Word int64 = 1
|
|
GasSha256Base int64 = 1
|
|
GasRipemd160Word int64 = 1
|
|
GasRipemd160Base int64 = 1
|
|
GasIdentityWord int64 = 1
|
|
GasIdentityBase int64 = 1
|
|
)
|