@@ -1035,59 +1035,45 @@ static void parse_getnetworkinfo_result(struct plugin *p, const char *buf)
1035
1035
1036
1036
static void wait_and_check_bitcoind (struct plugin * p )
1037
1037
{
1038
- int in , from , status , ret ;
1038
+ int in , from , status ;
1039
1039
pid_t child ;
1040
- const char * * cmd = gather_args (bitcoind , "getnetworkinfo" , NULL );
1041
- bool printed = false ;
1040
+ const char * * cmd = gather_args (
1041
+ bitcoind , "-rpcwait" , "-rpcwaittimeout=30" , "getnetworkinfo" , NULL ) ;
1042
1042
char * output = NULL ;
1043
1043
1044
- for (;;) {
1045
- tal_free (output );
1044
+ child = pipecmdarr (& in , & from , & from , cast_const2 (char * * , cmd ));
1046
1045
1047
- child = pipecmdarr (& in , & from , & from , cast_const2 (char * * , cmd ));
1046
+ if (bitcoind -> rpcpass )
1047
+ write_all (in , bitcoind -> rpcpass , strlen (bitcoind -> rpcpass ));
1048
1048
1049
- if (bitcoind -> rpcpass )
1050
- write_all (in , bitcoind -> rpcpass , strlen (bitcoind -> rpcpass ));
1049
+ close (in );
1051
1050
1052
- close (in );
1051
+ if (child < 0 ) {
1052
+ if (errno == ENOENT )
1053
+ bitcoind_failure (
1054
+ p ,
1055
+ "bitcoin-cli not found. Is bitcoin-cli "
1056
+ "(part of Bitcoin Core) available in your PATH?" );
1057
+ plugin_err (p , "%s exec failed: %s" , cmd [0 ], strerror (errno ));
1058
+ }
1053
1059
1054
- if (child < 0 ) {
1055
- if (errno == ENOENT )
1056
- bitcoind_failure (p , "bitcoin-cli not found. Is bitcoin-cli "
1057
- "(part of Bitcoin Core) available in your PATH?" );
1058
- plugin_err (p , "%s exec failed: %s" , cmd [0 ], strerror (errno ));
1059
- }
1060
+ output = grab_fd (cmd , from );
1060
1061
1061
- output = grab_fd (cmd , from );
1062
-
1063
- while ((ret = waitpid (child , & status , 0 )) < 0 && errno == EINTR );
1064
- if (ret != child )
1065
- bitcoind_failure (p , tal_fmt (bitcoind , "Waiting for %s: %s" ,
1066
- cmd [0 ], strerror (errno )));
1067
- if (!WIFEXITED (status ))
1068
- bitcoind_failure (p , tal_fmt (bitcoind , "Death of %s: signal %i" ,
1069
- cmd [0 ], WTERMSIG (status )));
1070
-
1071
- if (WEXITSTATUS (status ) == 0 )
1072
- break ;
1073
-
1074
- /* bitcoin/src/rpc/protocol.h:
1075
- * RPC_IN_WARMUP = -28, //!< Client still warming up
1076
- */
1077
- if (WEXITSTATUS (status ) != 28 ) {
1078
- if (WEXITSTATUS (status ) == 1 )
1079
- bitcoind_failure (p , "Could not connect to bitcoind using"
1080
- " bitcoin-cli. Is bitcoind running?" );
1081
- bitcoind_failure (p , tal_fmt (bitcoind , "%s exited with code %i: %s" ,
1082
- cmd [0 ], WEXITSTATUS (status ), output ));
1083
- }
1062
+ waitpid (child , & status , 0 );
1084
1063
1085
- if (!printed ) {
1086
- plugin_log (p , LOG_UNUSUAL ,
1087
- "Waiting for bitcoind to warm up..." );
1088
- printed = true;
1089
- }
1090
- sleep (1 );
1064
+ if (!WIFEXITED (status ))
1065
+ bitcoind_failure (p , tal_fmt (bitcoind , "Death of %s: signal %i" ,
1066
+ cmd [0 ], WTERMSIG (status )));
1067
+
1068
+ if (WEXITSTATUS (status ) != 0 ) {
1069
+ if (WEXITSTATUS (status ) == 1 )
1070
+ bitcoind_failure (p ,
1071
+ "RPC connection timed out. Could "
1072
+ "not connect to bitcoind using "
1073
+ "bitcoin-cli. Is bitcoind running?" );
1074
+ bitcoind_failure (p ,
1075
+ tal_fmt (bitcoind , "%s exited with code %i: %s" ,
1076
+ cmd [0 ], WEXITSTATUS (status ), output ));
1091
1077
}
1092
1078
1093
1079
parse_getnetworkinfo_result (p , output );
0 commit comments