kleros/kleros-v2

View on GitHub
services/graph-node/bin/debug

Summary

Maintainability
Test Coverage
#! /bin/bash

if [ -f "$1" ]
then
    exec rust-gdb -c "$1" /usr/local/cargo/bin/graph-node
else
    echo "usage: debug <core-file>"
    exit 1
fi