Add depreciation warning (#3310)

This commit is contained in:
Quentin Le Sceller 2020-04-28 12:17:34 -04:00 committed by GitHub
parent be4779c923
commit 061bf3d08f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -305,6 +305,10 @@ fn response<T: Into<Body>>(status: StatusCode, text: T) -> Response<Body> {
}
// Legacy V1 router
#[deprecated(
since = "4.0.0",
note = "The V1 Node API will be removed in grin 5.0.0. Please migrate to the V2 API as soon as possible."
)]
pub fn build_router(
chain: Arc<chain::Chain>,
tx_pool: Arc<RwLock<pool::TransactionPool>>,