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