We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd0d8f5 commit 892c7e7Copy full SHA for 892c7e7
src/messages/millions/MsgDrawRetry.ts
@@ -5,13 +5,13 @@ import { MsgDrawRetry } from '../../codec/lum-network/millions/tx';
5
6
export const MsgDrawRetryUrl = '/lum.network.millions.MsgDrawRetry';
7
8
-export const BuildMsgDrawRetry = (poolId: Long, drawId: Long, depositorAddress: string): Message => {
+export const BuildMsgDrawRetry = (poolId: Long, drawId: Long, drawRetryAddress: string): Message => {
9
return {
10
typeUrl: MsgDrawRetryUrl,
11
value: {
12
poolId,
13
drawId,
14
- depositorAddress,
+ drawRetryAddress,
15
} as MsgDrawRetry,
16
};
17
0 commit comments