From e8cf5f5899a003afe622f1b98fcb416e8a978d3a Mon Sep 17 00:00:00 2001 From: Agli Chandra Date: Sun, 24 May 2026 19:29:42 +0700 Subject: [PATCH] fix: remove nonexistent vesting precompile address Fixes #1192 Remove 0x...0803 from AvailableStaticPrecompiles since no vesting precompile implementation exists in the codebase. --- x/vm/types/precompiles.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/x/vm/types/precompiles.go b/x/vm/types/precompiles.go index a7e058ac85..41897931e3 100644 --- a/x/vm/types/precompiles.go +++ b/x/vm/types/precompiles.go @@ -9,7 +9,6 @@ const ( StakingPrecompileAddress = "0x0000000000000000000000000000000000000800" DistributionPrecompileAddress = "0x0000000000000000000000000000000000000801" ICS20PrecompileAddress = "0x0000000000000000000000000000000000000802" - VestingPrecompileAddress = "0x0000000000000000000000000000000000000803" BankPrecompileAddress = "0x0000000000000000000000000000000000000804" GovPrecompileAddress = "0x0000000000000000000000000000000000000805" SlashingPrecompileAddress = "0x0000000000000000000000000000000000000806" @@ -26,7 +25,6 @@ var AvailableStaticPrecompiles = []string{ StakingPrecompileAddress, DistributionPrecompileAddress, ICS20PrecompileAddress, - VestingPrecompileAddress, BankPrecompileAddress, GovPrecompileAddress, SlashingPrecompileAddress,