diff --git a/@stellar/anchor-tests/package.json b/@stellar/anchor-tests/package.json index 38b8a5e..ae37fb2 100644 --- a/@stellar/anchor-tests/package.json +++ b/@stellar/anchor-tests/package.json @@ -1,6 +1,6 @@ { "name": "@stellar/anchor-tests", - "version": "0.6.18", + "version": "0.6.19", "description": "stellar-anchor-tests is a library and command line interface for testing Stellar anchors.", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/@stellar/anchor-tests/src/tests/sep31/transactions.ts b/@stellar/anchor-tests/src/tests/sep31/transactions.ts index 2b199a9..4fe8483 100644 --- a/@stellar/anchor-tests/src/tests/sep31/transactions.ts +++ b/@stellar/anchor-tests/src/tests/sep31/transactions.ts @@ -212,6 +212,7 @@ const canCreateTransaction: Test = { receiver_id: this.context.expects.receivingCustomerId, amount: 100, asset_code: config.assetCode, + funding_method: "SEPA", fields: { transaction: { ...config.sepConfig["31"].transactionFields, @@ -317,6 +318,7 @@ const failsWithNoAmount: Test = { sender_id: this.context.expects.sendingCustomerId, receiver_id: this.context.expects.receivingCustomerId, asset_code: config.assetCode, + funding_method: "SEPA", fields: { transaction: { ...config.sepConfig["31"].transactionFields, @@ -366,6 +368,7 @@ const failsWithNoAssetCode: Test = { sender_id: this.context.expects.sendingCustomerId, receiver_id: this.context.expects.receivingCustomerId, amount: 100, + funding_method: "SEPA", fields: { transaction: { ...config.sepConfig["31"].transactionFields, diff --git a/server/package.json b/server/package.json index a532ecb..ab5cccc 100644 --- a/server/package.json +++ b/server/package.json @@ -30,6 +30,6 @@ "winston": "^3.3.3" }, "peerDependencies": { - "@stellar/anchor-tests": "0.6.18" + "@stellar/anchor-tests": "0.6.19" } }