mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-02 18:12:15 +00:00
18 lines
337 B
Go
18 lines
337 B
Go
|
package vm
|
||
|
|
||
|
const (
|
||
|
GasSha3 uint64 = 1
|
||
|
GasGetAccount uint64 = 1
|
||
|
GasStorageUpdate uint64 = 1
|
||
|
|
||
|
GasStackOp uint64 = 1
|
||
|
|
||
|
GasEcRecover uint64 = 1
|
||
|
GasSha256Word uint64 = 1
|
||
|
GasSha256Base uint64 = 1
|
||
|
GasRipemd160Word uint64 = 1
|
||
|
GasRipemd160Base uint64 = 1
|
||
|
GasIdentityWord uint64 = 1
|
||
|
GasIdentityBase uint64 = 1
|
||
|
)
|