renamed /blockchain to /chain

This commit is contained in:
lunar-mining
2022-01-09 14:19:15 +01:00
parent 496aa504c6
commit fad4e7aa65
16 changed files with 13 additions and 13 deletions

View File

@@ -6,7 +6,7 @@ use smol::Executor;
use url::Url;
use crate::{
blockchain::{rocks::columns, Rocks, RocksColumn, Slab},
chain::{rocks::columns, Rocks, RocksColumn, Slab},
crypto::{
coin::Coin,
keypair::{Keypair, PublicKey, SecretKey},

View File

@@ -10,7 +10,7 @@ use url::Url;
use super::reqrep::{PeerId, Publisher, RepProtocol, Reply, ReqProtocol, Request, Subscriber};
use crate::{
blockchain::{rocks::columns, RocksColumn, Slab, SlabStore},
chain::{rocks::columns, RocksColumn, Slab, SlabStore},
serial::{deserialize, serialize},
Error, Result,
};

View File

@@ -2,7 +2,7 @@ use incrementalmerkletree::{bridgetree::BridgeTree, Frontier, Tree};
use log::{debug, error};
use crate::{
blockchain::{rocks::columns, RocksColumn},
chain::{rocks::columns, RocksColumn},
crypto::{
coin::Coin,
keypair::{PublicKey, SecretKey},