diff options
| author | MarcoFalke <[email protected]> | 2020-04-18 15:18:17 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-05-01 07:39:06 -0400 |
| commit | fae7776690c37104d2d4949429c5f84e6a33c576 (patch) | |
| tree | d9c999386cc2c85970a2b32f7af6efbb39d114eb /src/wallet/test/wallet_tests.cpp | |
| parent | wallet: Avoid translating RPC errors when loading wallets (diff) | |
| download | discoin-fae7776690c37104d2d4949429c5f84e6a33c576.tar.xz discoin-fae7776690c37104d2d4949429c5f84e6a33c576.zip | |
wallet: Avoid translating RPC errors when creating txs
Also, mark feebumper bilingual_str as Untranslated
They are technical and have previously not been translated either.
It is questionable whether they can even appear in the GUI.
Diffstat (limited to 'src/wallet/test/wallet_tests.cpp')
| -rw-r--r-- | src/wallet/test/wallet_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/test/wallet_tests.cpp b/src/wallet/test/wallet_tests.cpp index 66e2ae9b6..0826b88f0 100644 --- a/src/wallet/test/wallet_tests.cpp +++ b/src/wallet/test/wallet_tests.cpp @@ -516,7 +516,7 @@ public: CTransactionRef tx; CAmount fee; int changePos = -1; - std::string error; + bilingual_str error; CCoinControl dummy; { BOOST_CHECK(wallet->CreateTransaction({recipient}, tx, fee, changePos, error, dummy)); |