We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52b0ba4 commit 7b50aa6Copy full SHA for 7b50aa6
src/fixtures/warp.ts
@@ -13,6 +13,7 @@ import {
13
int,
14
intBytes,
15
} from './primitives';
16
+import { bytesForInt } from './utils/bytesFor';
17
18
export const warpUnsignedMessage = () =>
19
new WarpUnsignedMessage(int(), id(), bytes());
@@ -29,4 +30,4 @@ export const warpMessage = () =>
29
30
new WarpMessage(warpUnsignedMessage(), warpSignature());
31
32
export const warpMessageBytes = () =>
- concatBytes(warpUnsignedMessageBytes(), warpSignatureBytes());
33
+ concatBytes(warpUnsignedMessageBytes(), bytesForInt(0), warpSignatureBytes());
0 commit comments