Skip to content

Commit

Permalink
general cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl Ranna committed Nov 26, 2020
1 parent 38e98b8 commit 99588c0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/Xud.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import Service from './service/Service';
import SwapClientManager from './swaps/SwapClientManager';
import Swaps from './swaps/Swaps';
import { UnitConverter } from './utils/UnitConverter';
import {createSimnetChannels} from './utils/simnet-connext-channels';
import { createSimnetChannels } from './utils/simnet-connext-channels';

const version: string = require('../package.json').version;

Expand Down
16 changes: 8 additions & 8 deletions lib/connextclient/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,26 +242,26 @@ export type ConnextIncomingTransferRequest = {
};
transfer: {
channelFactoryAddress: string;
assetId: string; // TODO
chainId: number; // TODO
assetId: string;
chainId: number;
channelAddress: string;
balance: {
amount: string[]; // TODO
amount: string[];
to: string[];
};
initiator: string;
responder: string;
initialStateHash: string;
transferDefinition: string;
transferEncodings: string[];
transferId: string; // TODO
transferId: string;
transferState: {
lockHash: string; // TODO
expiry: string; // TODO
lockHash: string;
expiry: string;
};
transferTimeout: string; // TODO
transferTimeout: string;
meta: {
routingId: string; // TODO
routingId: string;
};
};
conditionType: string;
Expand Down

0 comments on commit 99588c0

Please sign in to comment.