Skip to content

Commit

Permalink
test: fix warp message bytes fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
erictaylor committed Nov 20, 2024
1 parent 52b0ba4 commit 7b50aa6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fixtures/warp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
int,
intBytes,
} from './primitives';
import { bytesForInt } from './utils/bytesFor';

export const warpUnsignedMessage = () =>
new WarpUnsignedMessage(int(), id(), bytes());
Expand All @@ -29,4 +30,4 @@ export const warpMessage = () =>
new WarpMessage(warpUnsignedMessage(), warpSignature());

export const warpMessageBytes = () =>
concatBytes(warpUnsignedMessageBytes(), warpSignatureBytes());
concatBytes(warpUnsignedMessageBytes(), bytesForInt(0), warpSignatureBytes());

0 comments on commit 7b50aa6

Please sign in to comment.