Skip to content

Commit 892c7e7

Browse files
committed
Fix message Draw retry
1 parent cd0d8f5 commit 892c7e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/messages/millions/MsgDrawRetry.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import { MsgDrawRetry } from '../../codec/lum-network/millions/tx';
55

66
export const MsgDrawRetryUrl = '/lum.network.millions.MsgDrawRetry';
77

8-
export const BuildMsgDrawRetry = (poolId: Long, drawId: Long, depositorAddress: string): Message => {
8+
export const BuildMsgDrawRetry = (poolId: Long, drawId: Long, drawRetryAddress: string): Message => {
99
return {
1010
typeUrl: MsgDrawRetryUrl,
1111
value: {
1212
poolId,
1313
drawId,
14-
depositorAddress,
14+
drawRetryAddress,
1515
} as MsgDrawRetry,
1616
};
1717
};

0 commit comments

Comments
 (0)