Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove assets and tokens tabs from tari console wallet (see issue #4543) #4556

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
000d939
clear pending coinbase transactions now rely on utxo hashes
jorgeantonio21 Aug 3, 2022
3a93730
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 3, 2022
af7843d
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 4, 2022
d9a9d1c
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 5, 2022
468aff6
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 8, 2022
aa225a4
sync with dev
jorgeantonio21 Aug 8, 2022
68ec0b2
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 9, 2022
6edf4fb
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 9, 2022
265821d
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 11, 2022
39d3309
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 11, 2022
73bb978
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 11, 2022
aeb9184
changes
jorgeantonio21 Aug 12, 2022
2047081
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 15, 2022
839673d
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 16, 2022
053f3a7
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 16, 2022
0b75544
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 17, 2022
686719b
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 17, 2022
e995f82
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 18, 2022
3277cd6
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 18, 2022
f68ede4
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 18, 2022
8013468
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 18, 2022
2939edb
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 22, 2022
f4ddea2
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 22, 2022
756498c
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 22, 2022
31608ed
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 23, 2022
68b8e56
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 24, 2022
6789c10
Merge branch 'development' of github.com:jorgeantonio21/tari into dev…
jorgeantonio21 Aug 29, 2022
6be10cc
remove assets and tokens tab from console wallet
jorgeantonio21 Aug 29, 2022
a1d7ab4
delete unused files applications/ tari_console_wallet/src/ui/assets_t…
jorgeantonio21 Aug 29, 2022
15cf766
Merge branch 'development' into ja-remove-assets-and-tokens-tabs-from…
jorgeantonio21 Aug 29, 2022
9b5747d
Merge branch 'ja-remove-assets-and-tokens-tabs-from-console-wallet' o…
jorgeantonio21 Aug 29, 2022
09685f0
remove assets and tokens mods
jorgeantonio21 Aug 29, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions applications/tari_console_wallet/src/ui/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ use crate::{
notifier::Notifier,
ui::{
components::{
assets_tab::AssetsTab,
base_node::BaseNode,
contacts_tab::ContactsTab,
events_component::EventsComponent,
Expand All @@ -45,7 +44,6 @@ use crate::{
receive_tab::ReceiveTab,
send_tab::SendTab,
tabs_container::TabsContainer,
tokens_component::TokensComponent,
transactions_tab::TransactionsTab,
Component,
},
Expand Down Expand Up @@ -94,8 +92,6 @@ impl<B: Backend> App<B> {
.add("Receive".into(), Box::new(ReceiveTab::new()))
.add("Contacts".into(), Box::new(ContactsTab::new()))
.add("Network".into(), Box::new(NetworkTab::new(base_node_selected)))
.add("Assets".into(), Box::new(AssetsTab::new()))
.add("Tokens".into(), Box::new(TokensComponent::new()))
.add("Events".into(), Box::new(EventsComponent::new()))
.add("Log".into(), Box::new(LogTab::new()))
.add("Notifications".into(), Box::new(NotificationTab::new()));
Expand Down
77 changes: 0 additions & 77 deletions applications/tari_console_wallet/src/ui/components/assets_tab.rs

This file was deleted.

2 changes: 0 additions & 2 deletions applications/tari_console_wallet/src/ui/components/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
// USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

pub mod assets_tab;
pub mod balance;
pub mod base_node;
mod component;
Expand All @@ -32,7 +31,6 @@ pub mod receive_tab;
pub mod send_tab;
mod styles;
pub mod tabs_container;
pub mod tokens_component;
pub mod transactions_tab;
pub use self::component::*;
pub mod contacts_tab;
Expand Down

This file was deleted.