Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #18 from LiskHQ/0.9.10-multisig_dapp_simultaneously
Browse files Browse the repository at this point in the history
Decreased amount of LSK transferred to multi account
  • Loading branch information
Isabella Dell authored Oct 9, 2017
2 parents 546d8fd + 2e60b74 commit c6b0b62
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/api/multisignature.with.other.transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,13 @@ function createMultisignatureAndConfirm (account, cb) {
describe('for an account with lisk', function () {

var multisigAccount;
var amounts = [100000000*10, 100000000*12, 100000000*11];

beforeEach(function (done) {
multisigAccount = node.randomAccount();
createAccountWithLisk({
recipientId: multisigAccount.address,
amount: 100000000000000
amount: 100000000*1000
}, done);
});

Expand Down Expand Up @@ -414,7 +415,7 @@ describe('for an account with lisk', function () {
var params = {
secret: multisigAccount.password,
dappId: dappId,
amount: 10000
amount: 100000000*10
};
createIntransfer(params, function (err, res) {
expect(err).to.not.exist;
Expand All @@ -434,7 +435,6 @@ describe('for an account with lisk', function () {
var transactionsToCheckIds;

beforeEach(function (done) {
var amounts = [5000000, 1000000, 15000000];
async.map(amounts, function (amount, cb) {
var params = {
secret: multisigAccount.password,
Expand Down Expand Up @@ -472,7 +472,6 @@ describe('for an account with lisk', function () {
var inTransferIds;

beforeEach(function (done) {
var amounts = [5000000, 1000000, 15000000];
async.map(amounts, function (amount, cb) {
var params = {
secret: multisigAccount.password,
Expand Down Expand Up @@ -541,7 +540,6 @@ describe('for an account with lisk', function () {
var transactionsToCheckIds;

beforeEach(function (done) {
var amounts = [5000000, 1000000, 15000000];
async.map(amounts, function (amount, cb) {
var outTransferParams = {
amount: 1000,
Expand Down

0 comments on commit c6b0b62

Please sign in to comment.