laconicd/types/code.go
Federico Kunze 90f39390bc
evm: fix non-determinism (#352)
* evm: fix non-determinism

* fixes

* typo

* fix tests

* use Storage slice

* more fixes

* lint

* merge development

* additional tests
2020-07-13 16:01:45 -04:00

13 lines
289 B
Go

package types
// ----------------------------------------------------------------------------
// Code
// ----------------------------------------------------------------------------
// Code is account Code type alias
type Code []byte
func (c Code) String() string {
return string(c)
}