Bringing back the tiny chain project of learning how block chain stuff works :3

This commit is contained in:
2024-12-30 18:37:53 -08:00
commit e1d692dc1b
14 changed files with 1225 additions and 0 deletions

12
socket/Makefile Normal file
View File

@@ -0,0 +1,12 @@
all: setup client-server
setup:
mkdir -p bin/
client-server:
g++ transaction.cc client.cc -o bin/client
g++ transaction.cc client.cc -o bin/server
clean:
rm -f bin/server
rm -f bin/client