Skip to content

Commit

Permalink
fix: fix buf lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hieu.ha committed Jul 28, 2023
1 parent a386b49 commit f2fcfd5
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 103 deletions.
2 changes: 1 addition & 1 deletion api/p2e/v1/p2e.proto
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ message UserReward {
message MerkleDataResponse {
repeated string proof = 1;
UserReward user_reward = 2;
string claimableAmount = 3;
string claimable_amount = 3;
}

message AllSeasonsRequest {
Expand Down
4 changes: 2 additions & 2 deletions go/cmd/p2e-update-leaderboard/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ func (s *LeaderboardService) startScheduler() {
s.execUpdateLeaderboard(network, rpcEndpoint)
})

// schedule.Every(1).Day().At("00:00").Do(func() {
schedule.Every(15).Minutes().Do(func() {
schedule.Every(1).Day().At("00:00").Do(func() {
// schedule.Every(15).Minutes().Do(func() {
s.execReportRewards(network, rpcEndpoint)
})

Expand Down
Loading

0 comments on commit f2fcfd5

Please sign in to comment.