Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher-Li committed Nov 30, 2023
1 parent 8c6d6ca commit b542dd8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ describe('TradingRewardAggregation store', () => {
);
});

it('Successfully returns undefined when upgrating a nonexistent TradingRewardAggregation', async () => {
it('Successfully returns undefined when updating a nonexistent TradingRewardAggregation', async () => {
const fakeUpdate:
TradingRewardAggregationFromDatabase | undefined = await TradingRewardAggregationTable.update({
id: defaultSubaccountId,
Expand Down
4 changes: 2 additions & 2 deletions indexer/packages/postgres/src/types/db-model-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ export interface TradingRewardAggregationFromDatabase {
address: string;
startedAt: IsoString;
startedAtHeight: string;
endedAt: IsoString;
endedAtHeight: string;
endedAt?: IsoString;
endedAtHeight?: string;
period: TradingRewardAggregationPeriod;
amount: string;
}
Expand Down

0 comments on commit b542dd8

Please sign in to comment.