From a2fb87fafa0c871df774177891a286e47ce12a29 Mon Sep 17 00:00:00 2001 From: Mohammed Sohail Date: Fri, 2 Feb 2024 11:01:19 +0300 Subject: [PATCH] w3-celo (namespace update): Added GasTipCap method --- module/eth/gas_tip_cap.go | 4 ++-- module/eth/gas_tip_cap_test.go | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/module/eth/gas_tip_cap.go b/module/eth/gas_tip_cap.go index 84bcb5e..95b4395 100644 --- a/module/eth/gas_tip_cap.go +++ b/module/eth/gas_tip_cap.go @@ -3,8 +3,8 @@ package eth import ( "math/big" - "github.com/lmittmann/w3/internal/module" - "github.com/lmittmann/w3/w3types" + "github.com/grassrootseconomics/w3-celo/internal/module" + "github.com/grassrootseconomics/w3-celo/w3types" ) // GasTipCap requests the currently suggested gas tip cap after EIP-1559 to diff --git a/module/eth/gas_tip_cap_test.go b/module/eth/gas_tip_cap_test.go index c577f6e..9a0ad31 100644 --- a/module/eth/gas_tip_cap_test.go +++ b/module/eth/gas_tip_cap_test.go @@ -4,9 +4,9 @@ import ( "math/big" "testing" - "github.com/lmittmann/w3" - "github.com/lmittmann/w3/module/eth" - "github.com/lmittmann/w3/rpctest" + "github.com/grassrootseconomics/w3-celo" + "github.com/grassrootseconomics/w3-celo/module/eth" + "github.com/grassrootseconomics/w3-celo/rpctest" ) func TestGasTipCap(t *testing.T) {