Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoodrow committed Aug 1, 2024
1 parent 6d9a8ed commit 533d7cc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/services/castledkp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,13 @@ export const castledkp = {
// Temporarily create data using the beta service as well; this is not async and is fault tolerant.
// Primarily, this is being used to test the beta service by ingesting real data.
castledkp2
.createRaid(tick, tick.data.event.name, tick.data.event.value)
.createRaid({
raidTick: tick,
raidActivityType: {
name: tick.data.event.name,
defaultPayout: tick.data.event.value,
},
})
.catch((error) => {
console.log(`Failed to create raid in beta service: ${error}`);
});
Expand Down

0 comments on commit 533d7cc

Please sign in to comment.