Skip to content

Commit

Permalink
resolve conflicts; bump bsp minor version (geth minor upgrade)
Browse files Browse the repository at this point in the history
Signed-off-by: Pranay Valson <pranay.valson@gmail.com>
  • Loading branch information
noslav committed Jan 22, 2024
1 parent b2b1471 commit 77e8926
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 1,410 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
go-version: 1.21.6

- name: Checkout code
uses: actions/checkout@v2
Expand Down
1 change: 0 additions & 1 deletion core/vm/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ type StateDB interface {
AddLog(*types.Log)
AddPreimage(common.Hash, []byte)

ForEachStorage(common.Address, func(common.Hash, common.Hash) bool) error
GetStateSpecimen() *types.StateSpecimen
}

Expand Down
10 changes: 1 addition & 9 deletions internal/ethapi/multicall_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,7 @@ func (s *BlockChainAPI) Multicall(ctx context.Context, commonCallArgs Transactio
// get a new instance of the EVM to be used once
// ethapi's vmError callback always returns nil, so it is dropped here
//GetEVM(ctx context.Context, msg *core.Message, state *state.StateDB, header *types.Header, vmConfig *vm.Config, blockCtx *vm.BlockContext) (*vm.EVM, func() error)
evm, getVmErr := s.b.GetEVM(ctx, msg, state, header, nil, nil)
vmErr := getVmErr()

if vmErr != nil {
// if we cannot retrieve the an EVM for any message, that failure
// implies a fault in the node as a whole, so we should give up on
// processing the entire request
return nil, vmErr
}
evm := s.b.GetEVM(ctx, msg, state, header, nil, nil)

execResult, applyMsgErr := core.ApplyMessage(evm, msg, gp)

Expand Down
347 changes: 0 additions & 347 deletions les/api_backend.go

This file was deleted.

Loading

0 comments on commit 77e8926

Please sign in to comment.