diff options
author | Sebastian <sebasjm@gmail.com> | 2023-06-20 14:28:40 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-06-20 14:28:40 -0300 |
commit | cb3b48d316d2e2266b187384f36234f7119cbbeb (patch) | |
tree | 21e0659dffe9e1c301795504e503cf5aac6f43a7 | |
parent | 9f07ab8d4a13d52d7fd61a3e9b8ddc423fee164e (diff) |
using enum instead of string
-rw-r--r-- | packages/taler-util/src/transactions-types.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-util/src/transactions-types.ts b/packages/taler-util/src/transactions-types.ts index 576c8e335..a498d3471 100644 --- a/packages/taler-util/src/transactions-types.ts +++ b/packages/taler-util/src/transactions-types.ts @@ -161,7 +161,7 @@ export interface TransactionCommon { /** * Possible transitions based on the current state. */ - txActions: string[]; + txActions: TransactionAction[]; /** * Raw amount of the transaction (exclusive of fees or other extra costs). |