Files
ark/server/internal/core/application/errors.go
Pietralberto Mazza 7f937e8418 Vars and fields renaming (#387)
* Rename asp > server

* Rename pool > round

* Consolidate naming for pubkey/prvkey vars and types

* Fix

* Fix

* Fix wasm

* Rename congestionTree > vtxoTree

* Fix wasm

* Rename payment > request

* Rename congestionTree > vtxoTree after syncing with master

* Fix Send API in SDK

* Fix wasm

* Fix wasm

* Fixes

* Fixes after review

* Fix

* Fix naming

* Fix

* Fix e2e tests
2024-11-26 15:57:16 +01:00

12 lines
186 B
Go

package application
import "fmt"
type errTxRequestNotFound struct {
id string
}
func (e errTxRequestNotFound) Error() string {
return fmt.Sprintf("tx request %s not found", e.id)
}