1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1x 1x 803x 803x 1x 1801x 1x | import { BaseTx } from './BaseTx'; /** * Send coins transaction */ export class SendTx extends BaseTx { public type: number = 0; constructor() { super({}); } protected getChildBytes(skipSignature: boolean, skipSecondSign: boolean) { return null; } } |