aboutsummaryrefslogtreecommitdiff
path: root/src/bank-lib/test_bank_interpreter.h
diff options
context:
space:
mode:
authorJeff Burdges <burdges@gnunet.org>2016-05-04 23:30:36 +0200
committerJeff Burdges <burdges@gnunet.org>2016-05-04 23:30:36 +0200
commit48863ce93578ea656fe5342f0f4da1bd2bab8139 (patch)
treeed896b67c4464d406c0bd9235123e404ae7bf8cd /src/bank-lib/test_bank_interpreter.h
parent4141467d47a276365cbb9629b66c84b2c4e74dd4 (diff)
parentad6a40aaa580551b2861d51740a427af05d9f165 (diff)
Merge branch 'master' of git.taler.net:/var/git/exchange
Diffstat (limited to 'src/bank-lib/test_bank_interpreter.h')
-rw-r--r--src/bank-lib/test_bank_interpreter.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/bank-lib/test_bank_interpreter.h b/src/bank-lib/test_bank_interpreter.h
index 329b5146..7f56caf4 100644
--- a/src/bank-lib/test_bank_interpreter.h
+++ b/src/bank-lib/test_bank_interpreter.h
@@ -45,14 +45,14 @@ enum TBI_OpCode
TBI_OC_ADMIN_ADD_INCOMING,
/**
- * Expect that we have received the specified transaction at fakebank.
+ * Expect that we have received the specified transfer at fakebank.
*/
- TBI_OC_EXPECT_TRANSACTION,
+ TBI_OC_EXPECT_TRANSFER,
/**
- * Expect that we have exhaustively gone over all transactions at fakebank.
+ * Expect that we have exhaustively gone over all transfers at fakebank.
*/
- TBI_OC_EXPECT_TRANSACTIONS_EMPTY
+ TBI_OC_EXPECT_TRANSFERS_EMPTY
};
@@ -118,8 +118,8 @@ struct TBI_Command
} admin_add_incoming;
/**
- * If @e opcode is #TBI_OC_EXPECT_TRANSACTION, this
- * specifies which transaction we expected.
+ * If @e opcode is #TBI_OC_EXPECT_TRANSFER, this
+ * specifies which transfer we expected.
*/
struct {
@@ -129,7 +129,7 @@ struct TBI_Command
*/
const char *cmd_ref;
- } expect_transaction;
+ } expect_transfer;
} details;