feat: show recent transactions and view all transactions

This commit is contained in:
juancwu 2026-05-03 17:59:41 +00:00
commit 054f1227f0
8 changed files with 313 additions and 12 deletions

View file

@ -51,7 +51,7 @@ func main() {
})
srv := &http.Server{
Addr: ":" + cfg.Port,
Addr: cfg.Host + ":" + cfg.Port,
Handler: finalHandler,
}