All files / src/trxTypes Send.ts

100% Statements 9/9
100% Branches 2/2
100% Functions 3/3
100% Lines 7/7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 171x         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;
  }
}