returns forfeitsTxs in Ping RPC while the finalization started (#161)

This commit is contained in:
Louis Singer
2024-04-29 18:58:11 +02:00
committed by GitHub
parent 4ef35c8d26
commit dc64947d28
7 changed files with 226 additions and 182 deletions

View File

@@ -0,0 +1,11 @@
package application
import "fmt"
type errPaymentNotFound struct {
id string
}
func (e errPaymentNotFound) Error() string {
return fmt.Sprintf("payment %s not found", e.id)
}