Skip to content

Commit 634d305

Browse files
pepyakinrphmeier
authored andcommitted
chore: update the repo URL
Closes #119
1 parent 9034f37 commit 634d305

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

sugondat-chain/node/src/command.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ impl SubstrateCli for Cli {
5656
}
5757

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

6262
fn copyright_start_year() -> i32 {
@@ -92,7 +92,7 @@ impl SubstrateCli for RelayChainCli {
9292
}
9393

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

9898
fn copyright_start_year() -> i32 {

sugondat-chain/pallets/blobs/src/mock.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ impl pallet_blobs::Config for Test {
5959
}
6060

6161
// Build genesis storage according to the mock runtime.
62-
// TODO: https://github.com/thrumdev/sugondat/issues/28
62+
// TODO: https://github.com/thrumdev/blobs/issues/28
6363
#[allow(unused)]
6464
pub fn new_test_ext() -> sp_io::TestExternalities {
6565
frame_system::GenesisConfig::<Test>::default()

sugondat-chain/runtimes/sugondat-kusama/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Anonymous"]
55
description = "Sugondat Kusama Runtime"
66
license = "MIT OR Apache-2.0"
7-
repository = "https://github.com/thrumdev/sugondat"
7+
repository = "https://github.com/thrumdev/blobs"
88
edition = "2021"
99

1010
[package.metadata.docs.rs]

sugondat-shim/src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ pub mod query {
136136
// TODO: I envision several subcommands here. For example:
137137
// - query block <block_hash/number> — returns the information about a block and header.
138138
// - query blob <id> - returns the blob for a given key. The key here is the same sense as
139-
// described here https://github.com/thrumdev/sugondat/issues/9#issuecomment-1814005570.
139+
// described here https://github.com/thrumdev/blobs/issues/9#issuecomment-1814005570.
140140

141141
use super::{KeyManagementParams, SugondatRpcParams, ENV_SUGONDAT_NAMESPACE};
142142
use clap::{Args, Subcommand};

sugondat-shim/src/sugondat_rpc/conn.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ impl Conn {
2424
let subxt = sugondat_subxt::Client::from_rpc_client(raw.clone()).await?;
2525
check_if_compatible(&subxt)?;
2626
if !is_codegen_valid_for(&subxt.metadata()) {
27-
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";
27+
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";
2828
tracing::warn!(WARN_WRONG_VERSION);
2929
}
3030
let finalized = FinalizedHeadWatcher::spawn(subxt.clone()).await;

0 commit comments

Comments
 (0)