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 <[email protected]>
  • Loading branch information
noslav committed Jan 22, 2024
1 parent b2b1471 commit 58ba213
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
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
4 changes: 2 additions & 2 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const (

const (
BspVersionMajor = 1 // Major version component of the current release
BspVersionMinor = 5 // Minor version component of the current release
BspVersionPatch = 2 // Patch version component of the current release
BspVersionMinor = 6 // Minor version component of the current release
BspVersionPatch = 0 // Patch version component of the current release
)

// Version holds the textual version string.
Expand Down

0 comments on commit 58ba213

Please sign in to comment.