Skip to content

Commit 46ba4ae

Browse files
authored
Merge pull request AuthorizeNet#71 from kikmak42/master
Updating Bank Routing Number
2 parents fa2ae76 + 9bae6a6 commit 46ba4ae

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/net/authorize/sample/PaymentTransactions/CreditBankAccount.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static ANetApiResponse run(String apiLoginId, String transactionKey, Stri
3939
PaymentType paymentType = new PaymentType();
4040
BankAccountType bankAccountType = new BankAccountType();
4141
bankAccountType.setAccountType(BankAccountTypeEnum.CHECKING);
42-
bankAccountType.setRoutingNumber("125000105");
42+
bankAccountType.setRoutingNumber("122235821");
4343
bankAccountType.setAccountNumber("1234567890");
4444
bankAccountType.setNameOnAccount("John Doe");
4545
paymentType.setBankAccount(bankAccountType);

src/main/java/net/authorize/sample/PaymentTransactions/DebitBankAccount.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static ANetApiResponse run(String apiLoginId, String transactionKey, Doub
3939
PaymentType paymentType = new PaymentType();
4040
BankAccountType bankAccountType = new BankAccountType();
4141
bankAccountType.setAccountType(BankAccountTypeEnum.CHECKING);
42-
bankAccountType.setRoutingNumber("125000105");
42+
bankAccountType.setRoutingNumber("122235821");
4343
bankAccountType.setAccountNumber("1234567890");
4444
bankAccountType.setNameOnAccount("John Doe");
4545
paymentType.setBankAccount(bankAccountType);

0 commit comments

Comments
 (0)