File tree Expand file tree Collapse file tree 7 files changed +0
-17
lines changed Expand file tree Collapse file tree 7 files changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -541,7 +541,6 @@ namespace sdk {
541
541
542
542
amount ga_rust::get_min_fee_rate () const { throw std::runtime_error (" get_min_fee_rate not implemented" ); }
543
543
amount ga_rust::get_default_fee_rate () const { throw std::runtime_error (" get_default_fee_rate not implemented" ); }
544
- bool ga_rust::have_subaccounts () const { throw std::runtime_error (" have_subaccounts not implemented" ); }
545
544
uint32_t ga_rust::get_block_height () const { throw std::runtime_error (" get_block_height not implemented" ); }
546
545
amount ga_rust::get_dust_threshold () const { throw std::runtime_error (" get_dust_threshold not implemented" ); }
547
546
nlohmann::json ga_rust::get_spending_limits () const
Original file line number Diff line number Diff line change @@ -181,7 +181,6 @@ namespace sdk {
181
181
182
182
amount get_min_fee_rate () const ;
183
183
amount get_default_fee_rate () const ;
184
- bool have_subaccounts () const ;
185
184
uint32_t get_block_height () const ;
186
185
amount get_dust_threshold () const ;
187
186
nlohmann::json get_spending_limits () const ;
Original file line number Diff line number Diff line change @@ -1397,13 +1397,6 @@ namespace sdk {
1397
1397
return m_block_height;
1398
1398
}
1399
1399
1400
- bool ga_session::have_subaccounts () const
1401
- {
1402
- locker_t locker (m_mutex);
1403
- GDK_RUNTIME_ASSERT (!m_subaccounts.empty ());
1404
- return m_subaccounts.size () != 1u ;
1405
- }
1406
-
1407
1400
nlohmann::json ga_session::get_spending_limits () const
1408
1401
{
1409
1402
locker_t locker (m_mutex);
Original file line number Diff line number Diff line change @@ -191,7 +191,6 @@ namespace sdk {
191
191
amount get_min_fee_rate () const ;
192
192
amount get_default_fee_rate () const ;
193
193
uint32_t get_block_height () const ;
194
- bool have_subaccounts () const ;
195
194
amount get_dust_threshold () const ;
196
195
nlohmann::json get_spending_limits () const ;
197
196
bool is_spending_limits_decrease (const nlohmann::json& details);
Original file line number Diff line number Diff line change @@ -959,11 +959,6 @@ namespace sdk {
959
959
return p->get_default_fee_rate (); // Note no exception_wrapper
960
960
}
961
961
962
- bool session::have_subaccounts () const
963
- {
964
- auto p = get_nonnull_impl ();
965
- return p->have_subaccounts (); // Note no exception_wrapper
966
- }
967
962
uint32_t session::get_block_height () const
968
963
{
969
964
auto p = get_nonnull_impl ();
Original file line number Diff line number Diff line change @@ -169,7 +169,6 @@ namespace sdk {
169
169
170
170
amount get_min_fee_rate () const ;
171
171
amount get_default_fee_rate () const ;
172
- bool have_subaccounts () const ;
173
172
uint32_t get_block_height () const ;
174
173
amount get_dust_threshold () const ;
175
174
nlohmann::json get_spending_limits () const ;
Original file line number Diff line number Diff line change @@ -184,7 +184,6 @@ namespace sdk {
184
184
185
185
virtual amount get_min_fee_rate () const = 0;
186
186
virtual amount get_default_fee_rate () const = 0;
187
- virtual bool have_subaccounts () const = 0;
188
187
virtual uint32_t get_block_height () const = 0;
189
188
virtual amount get_dust_threshold () const = 0;
190
189
virtual nlohmann::json get_spending_limits () const = 0;
You can’t perform that action at this time.
0 commit comments