From b1bd4df6f8671e4018c15cd8995ff0e544a031cb Mon Sep 17 00:00:00 2001 From: Luca Moser <moser.luca@gmail.com> Date: Thu, 30 Jan 2020 22:06:23 +0100 Subject: [PATCH] removes mwm and tag field from explorer tx --- plugins/spa/explorer_routes.go | 2 -- plugins/spa/frontend/src/app/stores/ExplorerStore.tsx | 2 -- 2 files changed, 4 deletions(-) diff --git a/plugins/spa/explorer_routes.go b/plugins/spa/explorer_routes.go index 76ae367f..7d324e14 100644 --- a/plugins/spa/explorer_routes.go +++ b/plugins/spa/explorer_routes.go @@ -23,8 +23,6 @@ type ExplorerTx struct { Timestamp uint `json:"timestamp"` Trunk Hash `json:"trunk"` Branch Hash `json:"branch"` - Tag Trytes `json:"tag"` - Nonce Trytes `json:"nonce"` Solid bool `json:"solid"` MWM int `json:"mwm"` } diff --git a/plugins/spa/frontend/src/app/stores/ExplorerStore.tsx b/plugins/spa/frontend/src/app/stores/ExplorerStore.tsx index 0eb99585..4cc4149a 100644 --- a/plugins/spa/frontend/src/app/stores/ExplorerStore.tsx +++ b/plugins/spa/frontend/src/app/stores/ExplorerStore.tsx @@ -12,9 +12,7 @@ export class Transaction { timestamp: number; trunk: string; branch: string; - tag: string; solid: boolean; - mwm: number; } class AddressResult { -- GitLab