From 0ba8167aec691839a6eebcfde1c50693c081c32c Mon Sep 17 00:00:00 2001 From: Adrien Husson Date: Thu, 29 Aug 2024 11:58:10 +0200 Subject: [PATCH] docs: remove incorrect mention of zero check --- src/WNativeBundler.sol | 1 - 1 file changed, 1 deletion(-) diff --git a/src/WNativeBundler.sol b/src/WNativeBundler.sol index 840065cd..cc52a22e 100644 --- a/src/WNativeBundler.sol +++ b/src/WNativeBundler.sol @@ -24,7 +24,6 @@ abstract contract WNativeBundler is BaseBundler { /* CONSTRUCTOR */ - /// @dev Warning: assumes the given addresses are non-zero (they are not expected to be deployment arguments). /// @param wNative The address of the wNative token contract. constructor(address wNative) { require(wNative != address(0), ErrorsLib.ZERO_ADDRESS);