@@ -30,19 +30,19 @@ public class BitcoinBase
3030
3131 protected final String BITCOIN_PORT = "" ;
3232
33- protected final String BITCOIND_START_ARGS = STR . "-regtest -daemon -rpcpassword=\" \{ BITCOIN_ROOT_PASSWORD } \ " -rpcport=\" \{ BITCOIN_PORT } \" " ;
33+ protected final String BITCOIND_START_ARGS = "-regtest -daemon -rpcpassword=" + BITCOIN_ROOT_PASSWORD + " -rpcport=" + BITCOIN_PORT ;
3434
35- protected final String BITCOIN_CLI_LOAD_WALLET_ARGS = STR . "-named loadwallet -rpcpassword=\" \{ BITCOIN_ROOT_PASSWORD } \ " -rpcport=\" \{ BITCOIN_PORT } \ " wallet_name=\" United States\" " ;
35+ protected final String BITCOIN_CLI_LOAD_WALLET_ARGS = "-named loadwallet -rpcpassword=" + BITCOIN_ROOT_PASSWORD + " -rpcport=" + BITCOIN_PORT + " wallet_name=\" United States\" " ;
3636
37- protected final String BITCOIN_GET_WALLET_NAME_ARGS = STR . "-named getwalletinfo -rpcpassword=\" \{ BITCOIN_ROOT_PASSWORD } \ " -rpcport=\" \{ BITCOIN_PORT } \ " wallet_name\" United States\" " ;
37+ protected final String BITCOIN_GET_WALLET_NAME_ARGS = "-named getwalletinfo -rpcpassword=" + BITCOIN_ROOT_PASSWORD + " -rpcport=" + BITCOIN_PORT + " wallet_name\" United States\" " ;
3838
3939 protected final String BITCOIN_CLI_DELETE_WALLET_CMD = "rm -r" ;
4040
41- protected final String BITCOIN_CLI_UNLOAD_WALLET_ARGS = STR . "-named unloadwallet -rpcpassword=\" \{ BITCOIN_ROOT_PASSWORD } \ " -rpcport=\" \{ BITCOIN_PORT } \ " wallet_name=\" United States\" " ;
41+ protected final String BITCOIN_CLI_UNLOAD_WALLET_ARGS = "-named unloadwallet -rpcpassword=" + BITCOIN_ROOT_PASSWORD + " -rpcport=" + BITCOIN_PORT + " wallet_name=\" United States\" " ;
4242
4343 protected final String BITCOIN_CLI_RENAME_WALLET_ARGS = "" ;
4444
45- protected final String BITCOIN_CLI_ADD_NEW_WALLET_ARGS = STR . "bitcoin-cli createwallet -rpcpassword=\" \{ BITCOIN_ROOT_PASSWORD } \ " -rpcport=\" \{ BITCOIN_PORT } \" " ;
45+ protected final String BITCOIN_CLI_ADD_NEW_WALLET_ARGS = "bitcoin-cli createwallet -rpcpassword=" + BITCOIN_ROOT_PASSWORD + " -rpcport=" + BITCOIN_PORT ;
4646
4747 protected final String BITCOIN_CLI_SEND_LOCAL_WALLET_TO_REMOTE_WALLET_ARGS = "" ;
4848
@@ -58,9 +58,9 @@ public BitcoinBase(NitroWebExpress.Aspect aspect)
5858
5959 BitcoinAmericaAndNewYorkDate ESTDate = new BitcoinAmericaAndNewYorkDate ();
6060
61- CommonRails .printSystemComponent (this , this .hashCode (), STR . "WebExpress::Bitcoin >> opens in North Carolina on [Date: \{ ESTDate .EST_Time }]" );
61+ CommonRails .printSystemComponent (this , this .hashCode (), "WebExpress::Bitcoin >> opens in North Carolina on [Date: " + ESTDate .EST_Time );
6262
63- CommonRails .printSystemComponent (this , this .hashCode (), STR . "WebExpress::Bitcoin >> opens in Japan on [Date: \{ JAPANDate .PACIFIC_Time }]" );
63+ CommonRails .printSystemComponent (this , this .hashCode (), "WebExpress::Bitcoin >> opens in Japan on [Date: " + JAPANDate .PACIFIC_Time );
6464 }
6565
6666 public void send_message (StringBuffer buffer )
0 commit comments