Skip to content

Commit

Permalink
Update thorchain claim address (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
toshiSat authored Feb 21, 2025
1 parent c4d41cc commit aa50495
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 @@ -68,6 +68,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 @@ -20,7 +20,7 @@ func (k msgServer) ClaimThorchain(goCtx context.Context, msg *types.MsgClaimThor
}

// 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 aa50495

Please sign in to comment.