From 508d82cf9266805ffca6795fa429b529bea2b10a Mon Sep 17 00:00:00 2001 From: netkas Date: Tue, 18 Mar 2025 14:13:37 -0400 Subject: [PATCH] Update RPC host definitions for coffee.com and teapot.com --- bootstrap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.php b/bootstrap.php index 0ef94d6..4608c6c 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -32,7 +32,7 @@ // coffee.com define('COFFEE_DOMAIN', 'coffee.com'); - define('COFFEE_RPC_HOST', '127.0.0.0'); + define('COFFEE_RPC_HOST', '172.17.0.1'); define('COFFEE_RPC_PORT', 8086); define('COFFEE_RPC_SSL', false); define('COFFEE_PUBLIC_KEY', file_get_contents($dockerTestPath . 'coffee' . DIRECTORY_SEPARATOR . 'signature.pub')); @@ -40,7 +40,7 @@ // teapot.com define('TEAPOT_DOMAIN', 'teapot.com'); - define('TEAPOT_RPC_HOST', '127.0.0.0'); + define('TEAPOT_RPC_HOST', '172.17.0.1'); define('TEAPOT_RPC_PORT', 8087); define('TEAPOT_RPC_SSL', false); define('TEAPOT_PUBLIC_KEY', file_get_contents($dockerTestPath . 'teapot' . DIRECTORY_SEPARATOR . 'signature.pub'));