core, eth/protocols/snap, internal/ethapi: remove redundant types (#29841)

pull/29853/head
Mobin Mohanan 4 months ago committed by GitHub
parent 7f5cc02a99
commit 7224576fba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      core/genesis.go
  2. 2
      eth/protocols/snap/progress_test.go
  3. 6
      internal/ethapi/api_test.go

@ -594,7 +594,7 @@ func DeveloperGenesisBlock(gasLimit uint64, faucet *common.Address) *Genesis {
common.BytesToAddress([]byte{8}): {Balance: big.NewInt(1)}, // ECPairing common.BytesToAddress([]byte{8}): {Balance: big.NewInt(1)}, // ECPairing
common.BytesToAddress([]byte{9}): {Balance: big.NewInt(1)}, // BLAKE2b common.BytesToAddress([]byte{9}): {Balance: big.NewInt(1)}, // BLAKE2b
// Pre-deploy EIP-4788 system contract // Pre-deploy EIP-4788 system contract
params.BeaconRootsAddress: types.Account{Nonce: 1, Code: params.BeaconRootsCode}, params.BeaconRootsAddress: {Nonce: 1, Code: params.BeaconRootsCode},
}, },
} }
if faucet != nil { if faucet != nil {

@ -80,7 +80,7 @@ func makeLegacyProgress() legacyProgress {
Next: common.Hash{}, Next: common.Hash{},
Last: common.Hash{0x77}, Last: common.Hash{0x77},
SubTasks: map[common.Hash][]*legacyStorageTask{ SubTasks: map[common.Hash][]*legacyStorageTask{
common.Hash{0x1}: { {0x1}: {
{ {
Next: common.Hash{}, Next: common.Hash{},
Last: common.Hash{0xff}, Last: common.Hash{0xff},

@ -751,7 +751,7 @@ func TestEstimateGas(t *testing.T) {
From: &accounts[0].addr, From: &accounts[0].addr,
To: &accounts[1].addr, To: &accounts[1].addr,
Value: (*hexutil.Big)(big.NewInt(1)), Value: (*hexutil.Big)(big.NewInt(1)),
BlobHashes: []common.Hash{common.Hash{0x01, 0x22}}, BlobHashes: []common.Hash{{0x01, 0x22}},
BlobFeeCap: (*hexutil.Big)(big.NewInt(1)), BlobFeeCap: (*hexutil.Big)(big.NewInt(1)),
}, },
want: 21000, want: 21000,
@ -939,7 +939,7 @@ func TestCall(t *testing.T) {
call: TransactionArgs{ call: TransactionArgs{
From: &accounts[1].addr, From: &accounts[1].addr,
To: &randomAccounts[2].addr, To: &randomAccounts[2].addr,
BlobHashes: []common.Hash{common.Hash{0x01, 0x22}}, BlobHashes: []common.Hash{{0x01, 0x22}},
BlobFeeCap: (*hexutil.Big)(big.NewInt(1)), BlobFeeCap: (*hexutil.Big)(big.NewInt(1)),
}, },
overrides: StateOverride{ overrides: StateOverride{
@ -1063,7 +1063,7 @@ func TestSendBlobTransaction(t *testing.T) {
From: &b.acc.Address, From: &b.acc.Address,
To: &to, To: &to,
Value: (*hexutil.Big)(big.NewInt(1)), Value: (*hexutil.Big)(big.NewInt(1)),
BlobHashes: []common.Hash{common.Hash{0x01, 0x22}}, BlobHashes: []common.Hash{{0x01, 0x22}},
}) })
if err != nil { if err != nil {
t.Fatalf("failed to fill tx defaults: %v\n", err) t.Fatalf("failed to fill tx defaults: %v\n", err)

Loading…
Cancel
Save