Official Go implementation of the Ethereum protocol
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.
Martin Holst Swende
a907d7e81a
all: more linters ( #24783 )
...
This enables the following linters
- typecheck
- unused
- staticcheck
- bidichk
- durationcheck
- exportloopref
- gosec
WIth a few exceptions.
- We use a deprecated protobuf in trezor. I didn't want to mess with that, since I cannot meaningfully test any changes there.
- The deprecated TypeMux is used in a few places still, so the warning for it is silenced for now.
- Using string type in context.WithValue is apparently wrong, one should use a custom type, to prevent collisions between different places in the hierarchy of callers. That should be fixed at some point, but may require some attention.
- The warnings for using weak random generator are squashed, since we use a lot of random without need for cryptographic guarantees.
2 years ago
..
runtime
all: more linters ( #24783 )
2 years ago
testdata
core/vm, protocol_params: implement eip-2565 modexp repricing ( #21607 )
4 years ago
analysis.go
core/vm: optimize jumpdest analysis ( #23500 )
2 years ago
analysis_test.go
core/vm: reverse bit order in bytes of code bitmap ( #24120 )
3 years ago
common.go
core/vm: use uint256 in EVM implementation ( #20787 )
4 years ago
contract.go
core/vm: simplify op lookup in contract ( #23974 )
3 years ago
contracts.go
all: more linters ( #24783 )
2 years ago
contracts_test.go
all: replace uses of ioutil with io and os ( #24869 )
3 years ago
doc.go
core/vm: remove JIT VM codes ( #16362 )
7 years ago
eips.go
core/vm: implement EIP-3855: PUSH0 instruction ( #24039 )
3 years ago
errors.go
core/vm: simplify error handling in interpreter loop ( #23952 )
3 years ago
evm.go
core/evm: RANDOM opcode (EIP-4399) ( #24141 )
3 years ago
gas.go
core/vm: use uint256 in EVM implementation ( #20787 )
4 years ago
gas_table.go
core/vm: Rename SHA3 instruction to KECCAK256 ( #23976 )
3 years ago
gas_table_test.go
core, all: split vm.Context into BlockContext and TxContext ( #21672 )
4 years ago
instructions.go
core/vm: clean up some dead functions ( #24851 )
3 years ago
instructions_test.go
all: more linters ( #24783 )
2 years ago
interface.go
all: add support for EIP-2718, EIP-2930 transactions ( #21502 )
4 years ago
interpreter.go
core/vm: for tracing, do not report post-op memory
3 years ago
interpreter_test.go
core/vm: move interpreter interruption check to jump instructions ( #24026 )
3 years ago
jump_table.go
core/evm: RANDOM opcode (EIP-4399) ( #24141 )
3 years ago
logger.go
all: update license headers and AUTHORS from git history ( #24947 )
3 years ago
memory.go
core/vm: optimize Memory.Set32 ( #24847 )
3 years ago
memory_table.go
core/vm: Rename SHA3 instruction to KECCAK256 ( #23976 )
3 years ago
opcodes.go
core/vm: separate opcode group for 0x20 range ( #24850 )
3 years ago
operations_acl.go
core/vm: fix sstore gas comment type ( #24583 )
3 years ago
stack.go
core/vm: clean up some dead functions ( #24851 )
3 years ago
stack_table.go
core/vm: 64 bit memory and gas calculations ( #19210 )
6 years ago