go-ethereum/core/state
Daniel Liu fbecb8c5a5 all: fix staticcheck warning ST1006: don't use generic name self
The name of a method’s receiver should be a reflection of its identity;
often a one or two letter abbreviation of its type suffices (such as
“c” or “cl” for “Client”). Don’t use generic names such as “me”, “this”
or “self”, identifiers typical of object-oriented languages that place
more emphasis on methods as opposed to functions. The name need not be
as descriptive as that of a method argument, as its role is obvious and
serves no documentary purpose. It can be very short as it will appear
on almost every line of every method of the type; familiarity admits
brevity. Be consistent, too: if you call the receiver “c” in one method,
don’t call it “cl” in another.
2024-10-25 21:30:54 +08:00
..
access_list.go all: implement EIP-2929 (gas cost increases for state access opcodes) (#21509) 2024-04-22 21:14:54 +08:00
database.go core, cmd: add generic LRU implementation (#26162) 2024-08-26 11:17:23 +08:00
dump.go all: fix staticcheck warning ST1006: don't use generic name self 2024-10-25 21:30:54 +08:00
iterator.go all: use unified emptyRootHash and emptyCodeHash (#26718) 2024-10-21 17:55:16 +08:00
iterator_test.go new EVM Upgrade 2021-09-21 16:53:46 +05:30
journal.go all: implement EIP-2929 (gas cost increases for state access opcodes) (#21509) 2024-04-22 21:14:54 +08:00
main_test.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
state_object.go all: use unified emptyRootHash and emptyCodeHash (#26718) 2024-10-21 17:55:16 +08:00
state_reader.go new EVM Upgrade 2021-09-21 16:53:46 +05:30
state_test.go new EVM Upgrade 2021-09-21 16:53:46 +05:30
statedb.go all: fix staticcheck warning ST1006: don't use generic name self 2024-10-25 21:30:54 +08:00
statedb_test.go all: removed blockhash from statedb (#23126) 2024-10-18 09:24:52 +08:00
statedb_utils.go common: add binary variables for system contract 2024-06-06 19:33:59 +08:00
sync.go new EVM Upgrade 2021-09-21 16:53:46 +05:30
sync_test.go all: use unified emptyRootHash and emptyCodeHash (#26718) 2024-10-21 17:55:16 +08:00
trc21_reader.go Update trc21_reader.go 2021-09-21 18:13:01 +05:30