diff --git a/cyberwow/lib/widget/synced.dart b/cyberwow/lib/widget/synced.dart index 58b1497..6d68964 100644 --- a/cyberwow/lib/widget/synced.dart +++ b/cyberwow/lib/widget/synced.dart @@ -34,7 +34,7 @@ Widget summary(BuildContext context, SyncedState state) { final onFire = state.getTransactionPool.length >= 10; final onFireNotice = onFire ? ' 🔥' : ''; final poolLength = state.getTransactionPool.length; - final poolLengthNotice = poolLength > 0 ? '[${poolLength}] ' : ''; + final poolLengthNotice = poolLength > 1 ? '[${poolLength}] ' : ''; final txNotice = state.getTransactionPool.isEmpty ? '' : poolLengthNotice + state.getTransactionPool.first['id '].substring(0, 6) + ' ...';