Skip to content

Commit

Permalink
fix: remove openssl and add http:// for python test defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow committed Apr 13, 2024
1 parent 59f7214 commit 0583de3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
flakeboxLib.mkFenixMultiToolchain { toolchains = toolchainsNative; };

commonArgs = {
buildInputs = [ pkgs.openssl ] ++ lib.optionals pkgs.stdenv.isDarwin
buildInputs = [ ] ++ lib.optionals pkgs.stdenv.isDarwin
[ pkgs.darwin.apple_sdk.frameworks.SystemConfiguration ];
nativeBuildInputs = [ pkgs.pkg-config ];
};
Expand Down
2 changes: 1 addition & 1 deletion wrappers/fedimint-py/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def new_key_pair():


def build_test_client():
base_url = os.getenv("FEDIMINT_CLIENTD_BASE_URL", "127.0.0.1:3333")
base_url = os.getenv("FEDIMINT_CLIENTD_BASE_URL", "http://127.0.0.1:3333")
password = os.getenv("FEDIMINT_CLIENTD_PASSWORD", "password")
active_federation_id = os.getenv(
"FEDIMINT_CLIENTD_ACTIVE_FEDERATION_ID",
Expand Down
2 changes: 1 addition & 1 deletion wrappers/fedimint-py/test_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def new_key_pair():


async def build_test_client():
base_url = os.getenv("FEDIMINT_CLIENTD_BASE_URL", "127.0.0.1:3333")
base_url = os.getenv("FEDIMINT_CLIENTD_BASE_URL", "http://127.0.0.1:3333")
password = os.getenv("FEDIMINT_CLIENTD_PASSWORD", "password")
active_federation_id = os.getenv(
"FEDIMINT_CLIENTD_ACTIVE_FEDERATION_ID",
Expand Down

0 comments on commit 0583de3

Please sign in to comment.