From a65250118e50ff7c805d28f73b8e9d0647c8c221 Mon Sep 17 00:00:00 2001 From: Roman Borschel Date: Mon, 14 Sep 2020 17:05:36 +0200 Subject: [PATCH] Update backend/src/node.rs --- backend/src/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/node.rs b/backend/src/node.rs index 2c94c57..740b690 100644 --- a/backend/src/node.rs +++ b/backend/src/node.rs @@ -151,7 +151,7 @@ impl Node { } } if let Some(txcount) = interval.txcount { - if txcoint != self.stats.txcount { + if txcount != self.stats.txcount { self.stats.txcount = txcount; changed = true; }