Skip to content

Commit c2004cf

Browse files
committed
update bank account info for samples
1 parent b0abf65 commit c2004cf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

PaymentTransactions/credit-bank-account.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ function creditBankAccount(transactionId, callback) {
1414

1515
var bankAccountType = new ApiContracts.BankAccountType();
1616
bankAccountType.setAccountType(ApiContracts.BankAccountTypeEnum.SAVINGS);
17-
bankAccountType.setRoutingNumber('125000024');
18-
bankAccountType.setAccountNumber('12345678');
17+
bankAccountType.setRoutingNumber('121042882');
18+
bankAccountType.setAccountNumber('123456789');
1919
bankAccountType.setNameOnAccount('John Doe');
2020
paymentType.setBankAccount(bankAccountType);
2121

PaymentTransactions/debit-bank-account.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ function debitBankAccount(callback) {
1212

1313
var bankAccountType = new ApiContracts.BankAccountType();
1414
bankAccountType.setAccountType(ApiContracts.BankAccountTypeEnum.SAVINGS);
15-
bankAccountType.setRoutingNumber('125000024');
16-
bankAccountType.setAccountNumber('12345678');
15+
bankAccountType.setRoutingNumber('121042882');
16+
bankAccountType.setAccountNumber('123456789');
1717
bankAccountType.setNameOnAccount('John Doe');
1818

1919
var paymentType = new ApiContracts.PaymentType();

0 commit comments

Comments
 (0)