mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-26 16:40:20 +00:00
respond to comments
This commit is contained in:
@@ -49,6 +49,7 @@ def find_tool(name: str) -> str | None:
|
||||
def find_build_dir(repo_root: Path) -> Path | None:
|
||||
for name in (".build", "build"):
|
||||
candidate = repo_root / name
|
||||
print("find_build_dir: candidate: ", candidate)
|
||||
if (candidate / "compile_commands.json").exists():
|
||||
return candidate
|
||||
return None
|
||||
@@ -94,7 +95,6 @@ def main():
|
||||
repo_root = Path(
|
||||
subprocess.check_output(
|
||||
["git", "rev-parse", "--show-toplevel"],
|
||||
cwd=Path(__file__).parent,
|
||||
text=True,
|
||||
).strip()
|
||||
)
|
||||
|
||||
@@ -4351,6 +4351,9 @@ public:
|
||||
auto const gw = Account("gw");
|
||||
auto const alice = Account("alice");
|
||||
auto const bob = Account("bob");
|
||||
auto const carol = Account("carol");
|
||||
auto const dan = Account("dan");
|
||||
auto const eve = Account("eve");
|
||||
auto const gwUSD = gw["USD"];
|
||||
|
||||
// Test without fixCleanup3_4_0 amendment
|
||||
@@ -4390,13 +4393,6 @@ public:
|
||||
{
|
||||
Env env{*this, features};
|
||||
|
||||
auto const gw = Account("gw");
|
||||
auto const alice = Account("alice");
|
||||
auto const bob = Account("bob");
|
||||
auto const carol = Account("carol");
|
||||
auto const dan = Account("dan");
|
||||
auto const gwUSD = gw["USD"];
|
||||
|
||||
env.fund(XRP(400000), gw, alice, bob, carol, dan);
|
||||
env.close();
|
||||
|
||||
@@ -4466,7 +4462,6 @@ public:
|
||||
env.close();
|
||||
|
||||
// Create new account eve without trustline
|
||||
auto const eve = Account("eve");
|
||||
env.fund(XRP(400000), eve);
|
||||
env.close();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user