diff --git a/src/morevna.py b/src/morevna.py --- a/src/morevna.py +++ b/src/morevna.py @@ -3,6 +3,7 @@ import os.path from argparse import ArgumentParser import config as conf +import stats from hashtree import HashTree from client import Client from server import Server @@ -28,6 +29,8 @@ def update(args): c=Client(args.datafile) blocksToTransfer=c.negotiate() c.sendData(blocksToTransfer) + print() + print(stats.report()) def serve(args): _checkFile(args.datafile)