From 968605aedd36c73f596b8a93cd64cbf6e007a151 Mon Sep 17 00:00:00 2001 From: Matt Curtis Date: Fri, 29 Sep 2023 07:01:09 +0100 Subject: [PATCH] review comments: todo to remove deprecated url --- tools/faucet/faucet/faucet.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/faucet/faucet/faucet.go b/tools/faucet/faucet/faucet.go index cce55114e9..ff5d5e6a37 100644 --- a/tools/faucet/faucet/faucet.go +++ b/tools/faucet/faucet/faucet.go @@ -19,9 +19,10 @@ import ( ) const ( - _timeout = 60 * time.Second - NativeToken = "eth" - DeprecatedNativeToken = "obx" // leaving this in temporarily for tooling that is getting native funds using `/obx` URL + _timeout = 60 * time.Second + NativeToken = "eth" + // DeprecatedNativeToken is left in temporarily for tooling that is getting native funds using `/obx` URL + DeprecatedNativeToken = "obx" // todo (@matt) remove this once we have fixed the /obx usages WrappedOBX = "wobx" WrappedEth = "weth" WrappedUSDC = "usdc"