Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update the repo URL #123

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sugondat-chain/node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl SubstrateCli for Cli {
}

fn support_url() -> String {
"https://github.com/thrumdev/sugondat".into()
"https://github.com/thrumdev/blobs".into()
}

fn copyright_start_year() -> i32 {
Expand Down Expand Up @@ -92,7 +92,7 @@ impl SubstrateCli for RelayChainCli {
}

fn support_url() -> String {
"https://github.com/thrumdev/sugondat".into()
"https://github.com/thrumdev/blobs".into()
}

fn copyright_start_year() -> i32 {
Expand Down
2 changes: 1 addition & 1 deletion sugondat-chain/pallets/blobs/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl pallet_blobs::Config for Test {
}

// Build genesis storage according to the mock runtime.
// TODO: https://github.com/thrumdev/sugondat/issues/28
// TODO: https://github.com/thrumdev/blobs/issues/28
#[allow(unused)]
pub fn new_test_ext() -> sp_io::TestExternalities {
frame_system::GenesisConfig::<Test>::default()
Expand Down
2 changes: 1 addition & 1 deletion sugondat-chain/runtimes/sugondat-kusama/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
authors = ["Anonymous"]
description = "Sugondat Kusama Runtime"
license = "MIT OR Apache-2.0"
repository = "https://github.com/thrumdev/sugondat"
repository = "https://github.com/thrumdev/blobs"
edition = "2021"

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion sugondat-shim/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ pub mod query {
// TODO: I envision several subcommands here. For example:
// - query block <block_hash/number> — returns the information about a block and header.
// - query blob <id> - returns the blob for a given key. The key here is the same sense as
// described here https://github.com/thrumdev/sugondat/issues/9#issuecomment-1814005570.
// described here https://github.com/thrumdev/blobs/issues/9#issuecomment-1814005570.

use super::{KeyManagementParams, SugondatRpcParams, ENV_SUGONDAT_NAMESPACE};
use clap::{Args, Subcommand};
Expand Down
2 changes: 1 addition & 1 deletion sugondat-shim/src/sugondat_rpc/conn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ impl Conn {
let subxt = sugondat_subxt::Client::from_rpc_client(raw.clone()).await?;
check_if_compatible(&subxt)?;
if !is_codegen_valid_for(&subxt.metadata()) {
const WARN_WRONG_VERSION: &str = "connected to a sugondat node with a newer runtime than the one this shim was compiled against. Update the shim lest you run into problems. https://github.com/thrumdev/sugondat";
const WARN_WRONG_VERSION: &str = "connected to a sugondat node with a newer runtime than the one this shim was compiled against. Update the shim lest you run into problems. https://github.com/thrumdev/blobs";
tracing::warn!(WARN_WRONG_VERSION);
}
let finalized = FinalizedHeadWatcher::spawn(subxt.clone()).await;
Expand Down