All files / src/tx/applyTx checkConsolidate.js

100% Statements 11/11
100% Branches 6/6
100% Functions 2/2
100% Lines 11/11
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31              1x 1x   1x 5x 1x     4x 1x     3x 2x     1x       2x      
/**
 * Copyright (c) 2018-present, Leap DAO (leapdao.org)
 *
 * This source code is licensed under the Mozilla Public License Version 2.0
 * found in the LICENSE file in the root directory of this source tree.
 */
 
const { Type } = require('leap-core');
const { checkInsAndOuts } = require('./utils');
 
module.exports = (state, tx, bridgeState) => {
  if (tx.type !== Type.CONSOLIDATE) {
    throw new Error('Consolidate tx expected');
  }
 
  if (tx.inputs.length <= 1) {
    throw new Error('Consolidate tx should have > 1 input');
  }
 
  if (tx.outputs.length !== 1) {
    throw new Error('Consolidate tx should have only 1 output');
  }
 
  checkInsAndOuts(
    tx,
    state,
    bridgeState,
    ({ address }) => address === tx.outputs[0].address
  );
};