0xFugue -> logos-co changes

This commit is contained in:
0xFugue 2023-01-11 15:07:25 +05:30
parent fff99e931c
commit 8a898c56e5
5 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
DEFAULT_CONFIG_FILE = "github.com/0xFugue/wadoku/waku/config.json" DEFAULT_CONFIG_FILE = "github.com/logos-co/wadoku/waku/config.json"
def get_config_file(args): def get_config_file(args):
return DEFAULT_CONFIG_FILE if not hasattr(args, "config") else args.config return DEFAULT_CONFIG_FILE if not hasattr(args, "config") else args.config
@ -25,7 +25,7 @@ def run(args):
image = "waku-filter:alpha", image = "waku-filter:alpha",
entrypoint= ["/go/bin/waku-filter"], entrypoint= ["/go/bin/waku-filter"],
cmd = [ "-o=" + "/go/bin/out/filter.out", cmd = [ "-o=" + "/go/bin/out/filter.out",
"-d=" + "100s", "-d=" + duration,
"-i=" + iat ], "-i=" + iat ],
), ),
) )
@ -35,7 +35,7 @@ def run(args):
image = "waku-lightpush:alpha", image = "waku-lightpush:alpha",
entrypoint= ["/go/bin/waku-lightpush"], entrypoint= ["/go/bin/waku-lightpush"],
cmd = [ "-o=" + "/go/bin/out/lightpush.out", cmd = [ "-o=" + "/go/bin/out/lightpush.out",
"-d=" + "100s", "-d=" + duration,
"-i=" + iat ], "-i=" + iat ],
), ),
) )

View File

@ -144,7 +144,7 @@ kurtosis_run() {
kurtosis clean -a kurtosis clean -a
docker rm $prefix-$filtr docker rm $prefix-$filtr
docker rm $prefix-$lpush docker rm $prefix-$lpush
kurtosis run --enclave-id $enclave main.star '{"config":"github.com/0xFugue/wadoku/waku/config.json"}' > $FTDIR/kurtosis_output.log kurtosis run --enclave-id $enclave main.star '{"config":"github.com/logos-co/wadoku/waku/config.json"}' > $FTDIR/kurtosis_output.log
sleep 5 sleep 5
filtr_suffix="$(kurtosis enclave inspect $enclave | grep $prefix-$filtr | cut -f 1 -d ' ')" filtr_suffix="$(kurtosis enclave inspect $enclave | grep $prefix-$filtr | cut -f 1 -d ' ')"
lpush_suffix="$(kurtosis enclave inspect $enclave | grep $prefix-$lpush | cut -f 1 -d ' ')" lpush_suffix="$(kurtosis enclave inspect $enclave | grep $prefix-$lpush | cut -f 1 -d ' ')"

View File

@ -1,4 +1,4 @@
module github.com/0xFugue/wadoku/waku/filter module github.com/logos-co/wadoku/waku/filter
go 1.18 go 1.18

View File

@ -1,4 +1,4 @@
module github.com/0xFugue/wadoku/waku/lightpush module github.com/logos-co/wadoku/waku/lightpush
go 1.18 go 1.18

View File

@ -21,7 +21,7 @@ import (
//"github.com/waku-org/go-waku/waku/v2/protocol/filter" //"github.com/waku-org/go-waku/waku/v2/protocol/filter"
//"github.com/waku-org/go-waku/waku/v2/protocol" //"github.com/waku-org/go-waku/waku/v2/protocol"
//"github.com/0xFugue/wadoku/utils" //"github.com/wadoku/wadoku/utils"
) )
var log = logging.Logger("lightpush") var log = logging.Logger("lightpush")