mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 00:27:41 +00:00 
			
		
		
		
	* Re-add validator-vesting legacy rest endpoints * Add changelog entry * Re-add /vesting swagger config
		
			
				
	
	
		
			13 lines
		
	
	
		
			261 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			261 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package rest
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/gorilla/mux"
 | 
						|
 | 
						|
	"github.com/cosmos/cosmos-sdk/client"
 | 
						|
)
 | 
						|
 | 
						|
// RegisterRoutes registers kavadist-related REST handlers to a router
 | 
						|
func RegisterRoutes(cliCtx client.Context, rtr *mux.Router) {
 | 
						|
	registerQueryRoutes(cliCtx, rtr)
 | 
						|
}
 |