From 1ebb7f0d5dacc087dbf752b54c17595a5eda4a81 Mon Sep 17 00:00:00 2001
From: Benjamin Wenger <ben@elixxir.ioo>
Date: Tue, 23 Mar 2021 11:10:29 -0700
Subject: [PATCH] fixed bindings function name

---
 bindings/registrationStatus.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bindings/registrationStatus.go b/bindings/registrationStatus.go
index 1c38f39f7..5d33cbd6e 100644
--- a/bindings/registrationStatus.go
+++ b/bindings/registrationStatus.go
@@ -19,7 +19,7 @@ func (nrs *NodeRegistrationsStatus) GetRegistered() int {
 	return nrs.registered
 }
 
-// GetInProgress return the number of nodes currently registering.
-func (nrs *NodeRegistrationsStatus) GetInProgress() int {
+// GetTotal return the total of nodes currently in the network.
+func (nrs *NodeRegistrationsStatus) GetTotal() int {
 	return nrs.total
 }
-- 
GitLab