File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
xrpl4j-integration-tests/src/test
java/org/xrpl/xrpl4j/tests/environment Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -82,13 +82,13 @@ public class RippledContainer {
8282 * No-args constructor.
8383 */
8484 public RippledContainer () {
85- try (GenericContainer <?> container = new GenericContainer <>("rippleci/rippled:latest " )) {
85+ try (GenericContainer <?> container = new GenericContainer <>("rippleci/rippled:develop " )) {
8686 this .rippledContainer = container .withCreateContainerCmdModifier ((Consumer <CreateContainerCmd >) (cmd ) ->
87- cmd .withEntrypoint ("/opt/ripple /bin/rippled " ))
88- .withCommand ("-a --start --conf /config/rippled .cfg" )
87+ cmd .withEntrypoint ("/opt/xrpld /bin/xrpld " ))
88+ .withCommand ("-a --start --conf /config/xrpld .cfg" )
8989 .withExposedPorts (5005 )
9090 .withImagePullPolicy (PullPolicy .alwaysPull ())
91- .withClasspathResourceMapping ("rippled " ,
91+ .withClasspathResourceMapping ("xrpld " ,
9292 "/config" ,
9393 BindMode .READ_ONLY )
9494 .waitingFor (new LogMessageWaitStrategy ().withRegEx (".*Application starting.*" ));
File renamed without changes.
Original file line number Diff line number Diff line change @@ -144,7 +144,6 @@ validators.txt
144144# Devnet amendments as of June 28th, 2023
145145NegativeUNL
146146fixRemoveNFTokenAutoTrustLine
147- NonFungibleTokensV1
148147CheckCashMakesTrustLine
149148fixRmSmallIncreasedQOffers
150149fixSTAmountCanonicalize
You can’t perform that action at this time.
0 commit comments