Prathamesh Musale
7901e5f0f0
Some checks failed
Protobuf / lint (pull_request) Successful in 17s
Build / build (pull_request) Successful in 2m11s
E2E Tests / test-e2e (pull_request) Failing after 3m24s
Integration Tests / test-integration (pull_request) Successful in 1m47s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 8m5s
Unit Tests / test-unit (pull_request) Successful in 2m41s
SDK Tests / sdk_tests_auctions (pull_request) Failing after 12m30s
SDK Tests / sdk_tests (pull_request) Failing after 11m57s
12 lines
199 B
Go
12 lines
199 B
Go
package auction
|
|
|
|
// DefaultParams returns a default set of parameters.
|
|
func DefaultParams() Params {
|
|
return Params{}
|
|
}
|
|
|
|
// Validate a set of params.
|
|
func (p Params) Validate() error {
|
|
return nil
|
|
}
|