From fc03bc4aa8244e859dd809c4656388a5e6b9c73b Mon Sep 17 00:00:00 2001 From: toshiSat <10103480+toshiSat@users.noreply.github.com> Date: Thu, 20 Feb 2025 13:33:24 -0700 Subject: [PATCH] Update thorchain claim address --- CHANGELOG.md | 1 + x/claim/keeper/msg_server_claim_thorchain.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7a1fea4..8c2c4f53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -58,6 +58,7 @@ Contains all the PRs that improved the code without changing the behaviors. ## Changed - Updated sentinel to handle provider events - moved testnet and mainnet releaser separately +- tc claim address ## Fixed - Fixed code lint diff --git a/x/claim/keeper/msg_server_claim_thorchain.go b/x/claim/keeper/msg_server_claim_thorchain.go index 7a3a059c..fa85364e 100644 --- a/x/claim/keeper/msg_server_claim_thorchain.go +++ b/x/claim/keeper/msg_server_claim_thorchain.go @@ -15,7 +15,7 @@ func (k msgServer) ClaimThorchain(goCtx context.Context, msg *types.MsgClaimThor k.Logger(ctx).Info(msg.Creator) // only allow thorchain claim server address to call this function - if msg.Creator != "tarkeo1z02ke8639m47g9dfrheegr2u9zecegt5qvtj00" && msg.Creator != "arkeo1z02ke8639m47g9dfrheegr2u9zecegt50fjg7v" { + if msg.Creator != "tarkeo1zsafqx0qk6rp2vvs97n9udylquj7mfkt8mfypq" && msg.Creator != "arkeo1zsafqx0qk6rp2vvs97n9udylquj7mfktg7s7sr" { return nil, errors.Wrapf(types.ErrInvalidCreator, "Invalid Creator %s", msg.Creator) }