Skip to content

Commit

Permalink
Update thorchain claim address
Browse files Browse the repository at this point in the history
  • Loading branch information
toshiSat committed Feb 20, 2025
1 parent 77aaca1 commit fc03bc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion x/claim/keeper/msg_server_claim_thorchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit fc03bc4

Please sign in to comment.