mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
9ab08e6998
* first version of the watchtower api * first version * delete watchtower * move to message loop * roughtime * one time * fix test * Fixed test * Fixed proposer server * Gaz * gaz * Stuck * Tests passing * Fixed all the tests
18 lines
916 B
Bash
Executable File
18 lines
916 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Script to update mock files after proto/beacon/rpc/v1/services.proto changes.
|
|
# Use a space to separate mock destination from its interfaces.
|
|
|
|
mocks=(
|
|
"./beacon-chain/internal/validator_service_mock.go ValidatorServiceServer,ValidatorService_WaitForActivationServer,ValidatorService_WaitForChainStartServer"
|
|
"./validator/internal/attester_service_mock.go AttesterServiceClient"
|
|
"./validator/internal/proposer_service_mock.go ProposerServiceClient"
|
|
"./validator/internal/validator_service_mock.go ValidatorServiceClient,ValidatorService_WaitForActivationClient,ValidatorService_WaitForChainStartClient")
|
|
|
|
for ((i = 0; i < ${#mocks[@]}; i++)); do
|
|
file=${mocks[i]% *};
|
|
interfaces=${mocks[i]#* };
|
|
echo "generating $file for interfaces: $interfaces";
|
|
mockgen -package=internal -destination=$file github.com/prysmaticlabs/prysm/proto/beacon/rpc/v1 $interfaces
|
|
done
|