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) }