@@ -19,6 +19,7 @@ import (
1919 "github.com/ava-labs/avalanchego/vms/secp256k1fx"
2020 "github.com/ava-labs/coreth/params"
2121 "github.com/ava-labs/coreth/plugin/evm/atomic"
22+ "github.com/ava-labs/coreth/utils"
2223 "github.com/ethereum/go-ethereum/common"
2324 "github.com/holiman/uint256"
2425)
@@ -1491,7 +1492,7 @@ func TestExportTxGasCost(t *testing.T) {
14911492 Keys : [][]* secp256k1.PrivateKey {{testKeys [0 ]}},
14921493 ExpectedGasUsed : 1230 ,
14931494 ExpectedFee : 30750 ,
1494- BaseFee : big .NewInt (25 * params .GWei ),
1495+ BaseFee : big .NewInt (25 * utils .GWei ),
14951496 },
14961497 "simple export 225Gwei BaseFee" : {
14971498 UnsignedExportTx : & atomic.UnsignedExportTx {
@@ -1523,7 +1524,7 @@ func TestExportTxGasCost(t *testing.T) {
15231524 Keys : [][]* secp256k1.PrivateKey {{testKeys [0 ]}},
15241525 ExpectedGasUsed : 1230 ,
15251526 ExpectedFee : 276750 ,
1526- BaseFee : big .NewInt (225 * params .GWei ),
1527+ BaseFee : big .NewInt (225 * utils .GWei ),
15271528 },
15281529 "complex export 25Gwei BaseFee" : {
15291530 UnsignedExportTx : & atomic.UnsignedExportTx {
@@ -1567,7 +1568,7 @@ func TestExportTxGasCost(t *testing.T) {
15671568 Keys : [][]* secp256k1.PrivateKey {{testKeys [0 ], testKeys [0 ], testKeys [0 ]}},
15681569 ExpectedGasUsed : 3366 ,
15691570 ExpectedFee : 84150 ,
1570- BaseFee : big .NewInt (25 * params .GWei ),
1571+ BaseFee : big .NewInt (25 * utils .GWei ),
15711572 },
15721573 "complex export 225Gwei BaseFee" : {
15731574 UnsignedExportTx : & atomic.UnsignedExportTx {
@@ -1611,7 +1612,7 @@ func TestExportTxGasCost(t *testing.T) {
16111612 Keys : [][]* secp256k1.PrivateKey {{testKeys [0 ], testKeys [0 ], testKeys [0 ]}},
16121613 ExpectedGasUsed : 3366 ,
16131614 ExpectedFee : 757350 ,
1614- BaseFee : big .NewInt (225 * params .GWei ),
1615+ BaseFee : big .NewInt (225 * utils .GWei ),
16151616 },
16161617 }
16171618
0 commit comments