Skip to content

Commit

Permalink
chore: update the repo URL
Browse files Browse the repository at this point in the history
Closes #119
  • Loading branch information
pepyakin authored and rphmeier committed Dec 15, 2023
1 parent ecc5c3a commit d190baf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
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

0 comments on commit d190baf

Please sign in to comment.