Skip to content

Commit 7b50aa6

Browse files
committed
test: fix warp message bytes fixture
1 parent 52b0ba4 commit 7b50aa6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/fixtures/warp.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import {
1313
int,
1414
intBytes,
1515
} from './primitives';
16+
import { bytesForInt } from './utils/bytesFor';
1617

1718
export const warpUnsignedMessage = () =>
1819
new WarpUnsignedMessage(int(), id(), bytes());
@@ -29,4 +30,4 @@ export const warpMessage = () =>
2930
new WarpMessage(warpUnsignedMessage(), warpSignature());
3031

3132
export const warpMessageBytes = () =>
32-
concatBytes(warpUnsignedMessageBytes(), warpSignatureBytes());
33+
concatBytes(warpUnsignedMessageBytes(), bytesForInt(0), warpSignatureBytes());

0 commit comments

Comments
 (0)