You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
369 B

10 years ago
10 years ago
10 years ago
10 years ago
  1. package vm
  2. const (
  3. GasSha3 int64 = 1
  4. GasGetAccount int64 = 1
  5. GasStorageUpdate int64 = 1
  6. GasBaseOp int64 = 0 // TODO: make this 1
  7. GasStackOp int64 = 1
  8. GasEcRecover int64 = 1
  9. GasSha256Word int64 = 1
  10. GasSha256Base int64 = 1
  11. GasRipemd160Word int64 = 1
  12. GasRipemd160Base int64 = 1
  13. GasIdentityWord int64 = 1
  14. GasIdentityBase int64 = 1
  15. )