core: golint updates for this or self warning (#16633)

This commit is contained in:
kiel barry 2018-05-02 01:27:59 -07:00 committed by Péter Szilágyi
parent 670bae4cd3
commit a7720b5926
4 changed files with 18 additions and 18 deletions

View File

@ -139,15 +139,15 @@ func (c *Contract) Value() *big.Int {
} }
// SetCode sets the code to the contract // SetCode sets the code to the contract
func (self *Contract) SetCode(hash common.Hash, code []byte) { func (c *Contract) SetCode(hash common.Hash, code []byte) {
self.Code = code c.Code = code
self.CodeHash = hash c.CodeHash = hash
} }
// SetCallCode sets the code of the contract and address of the backing data // SetCallCode sets the code of the contract and address of the backing data
// object // object
func (self *Contract) SetCallCode(addr *common.Address, hash common.Hash, code []byte) { func (c *Contract) SetCallCode(addr *common.Address, hash common.Hash, code []byte) {
self.Code = code c.Code = code
self.CodeHash = hash c.CodeHash = hash
self.CodeAddr = addr c.CodeAddr = addr
} }

View File

@ -31,9 +31,9 @@ import (
type Storage map[common.Hash]common.Hash type Storage map[common.Hash]common.Hash
func (self Storage) Copy() Storage { func (s Storage) Copy() Storage {
cpy := make(Storage) cpy := make(Storage)
for key, value := range self { for key, value := range s {
cpy[key] = value cpy[key] = value
} }

View File

@ -51,14 +51,14 @@ func (m *Memory) Resize(size uint64) {
} }
// Get returns offset + size as a new slice // Get returns offset + size as a new slice
func (self *Memory) Get(offset, size int64) (cpy []byte) { func (m *Memory) Get(offset, size int64) (cpy []byte) {
if size == 0 { if size == 0 {
return nil return nil
} }
if len(self.store) > int(offset) { if len(m.store) > int(offset) {
cpy = make([]byte, size) cpy = make([]byte, size)
copy(cpy, self.store[offset:offset+size]) copy(cpy, m.store[offset:offset+size])
return return
} }
@ -67,13 +67,13 @@ func (self *Memory) Get(offset, size int64) (cpy []byte) {
} }
// GetPtr returns the offset + size // GetPtr returns the offset + size
func (self *Memory) GetPtr(offset, size int64) []byte { func (m *Memory) GetPtr(offset, size int64) []byte {
if size == 0 { if size == 0 {
return nil return nil
} }
if len(self.store) > int(offset) { if len(m.store) > int(offset) {
return self.store[offset : offset+size] return m.store[offset : offset+size]
} }
return nil return nil

View File

@ -375,10 +375,10 @@ var opCodeToString = map[OpCode]string{
SWAP: "SWAP", SWAP: "SWAP",
} }
func (o OpCode) String() string { func (op OpCode) String() string {
str := opCodeToString[o] str := opCodeToString[op]
if len(str) == 0 { if len(str) == 0 {
return fmt.Sprintf("Missing opcode 0x%x", int(o)) return fmt.Sprintf("Missing opcode 0x%x", int(op))
} }
return str return str