From 1d3c9b94b8908d0ff4dd34a527142bf28256ae83 Mon Sep 17 00:00:00 2001 From: Rushikesh Nimkar Date: Mon, 3 Jun 2024 20:42:54 +0530 Subject: [PATCH] build fix --- main.go | 2 +- util/pkg/node/node.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index dde6183..84ea461 100644 --- a/main.go +++ b/main.go @@ -129,7 +129,7 @@ func main() { // Call the function to generate the wallet address and store it in the global variable core.GenerateWalletAddress() - core.GenerateWalletAddressSolana() + core.GenerateWalletAddresssolana() go p2p.Init() //running updater diff --git a/util/pkg/node/node.go b/util/pkg/node/node.go index 0bd768d..a679990 100644 --- a/util/pkg/node/node.go +++ b/util/pkg/node/node.go @@ -19,7 +19,7 @@ type NodeStatus struct { StartTimeStamp int64 `json:"startTimeStamp"` Name string `json:"name"` WalletAddress string `json:"walletAddress"` - WalletAddresssol string `json:"wallet"` + WalletAddresssol string `json:"walletAddressSol"` } func CreateNodeStatus(address string, id string, startTimeStamp int64, name string) *NodeStatus {