File tree 1 file changed +1
-16
lines changed
1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -1911,9 +1911,6 @@ namespace cn
1911
1911
1912
1912
size_t WalletGreen::transfer (const TransactionParameters &transactionParameters, crypto::SecretKey &transactionSK)
1913
1913
{
1914
- tools::ScopeExit releaseContext ([this ]
1915
- { m_dispatcher.yield (); });
1916
-
1917
1914
platform_system::EventLock lk (m_readyEvent);
1918
1915
1919
1916
throwIfNotInitialized ();
@@ -2033,9 +2030,6 @@ namespace cn
2033
2030
2034
2031
size_t WalletGreen::makeTransaction (const TransactionParameters &sendingTransaction)
2035
2032
{
2036
- tools::ScopeExit releaseContext ([this ]
2037
- { m_dispatcher.yield (); });
2038
-
2039
2033
platform_system::EventLock lk (m_readyEvent);
2040
2034
2041
2035
throwIfNotInitialized ();
@@ -2087,10 +2081,6 @@ namespace cn
2087
2081
2088
2082
void WalletGreen::rollbackUncommitedTransaction (size_t transactionId)
2089
2083
{
2090
- tools::ScopeExit releaseContext ([this ] {
2091
- m_dispatcher.yield ();
2092
- });
2093
-
2094
2084
platform_system::EventLock lk (m_readyEvent);
2095
2085
2096
2086
throwIfNotInitialized ();
@@ -4025,13 +4015,8 @@ namespace cn
4025
4015
const std::vector<std::string> &sourceAddresses,
4026
4016
const std::string &destinationAddress)
4027
4017
{
4028
-
4029
- size_t id = WALLET_INVALID_TRANSACTION_ID;
4030
- tools::ScopeExit releaseContext ([this ] {
4031
- m_dispatcher.yield ();
4032
- });
4033
-
4034
4018
platform_system::EventLock lk (m_readyEvent);
4019
+ size_t id = WALLET_INVALID_TRANSACTION_ID;
4035
4020
4036
4021
throwIfNotInitialized ();
4037
4022
throwIfTrackingMode ();
You can’t perform that action at this time.
0 commit comments