From b211dc4f8bf7294d783baceb419efba0ff8f4812 Mon Sep 17 00:00:00 2001 From: strepCode77 <5penguin.toddies@icloud.com> Date: Sun, 9 Feb 2025 12:09:04 +0100 Subject: [PATCH] Update abi.go --- accounts/abi/abi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/abi/abi.go b/accounts/abi/abi.go index f75278c8b1..ab63c95e73 100644 --- a/accounts/abi/abi.go +++ b/accounts/abi/abi.go @@ -272,7 +272,7 @@ var panicReasons = map[uint64]string{ } // UnpackRevert resolves the abi-encoded revert reason. According to the solidity -// spec https://solidity.readthedocs.io/en/latest/control-structures.html#revert, +// spec https://docs.soliditylang.org/en/latest/control-structures.html#revert, // the provided revert reason is abi-encoded as if it were a call to function // `Error(string)` or `Panic(uint256)`. So it's a special tool for it. func UnpackRevert(data []byte) (string, error) {