From 359441461aa629cc9d0161adcec443cd4dc69249 Mon Sep 17 00:00:00 2001 From: abhi3700 Date: Wed, 25 Oct 2023 19:31:29 +0530 Subject: [PATCH] Changed the bytesize of plot to satisfy the min. required bytesize --- examples/simple.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple.rs b/examples/simple.rs index 9db9d909..5098e0c7 100644 --- a/examples/simple.rs +++ b/examples/simple.rs @@ -6,7 +6,7 @@ use sdk_node::PotConfiguration; #[tokio::main] async fn main() { tracing_subscriber::fmt().init(); - let plots = [subspace_sdk::FarmDescription::new("plot", subspace_sdk::ByteSize::mb(100))]; + let plots = [subspace_sdk::FarmDescription::new("plot", subspace_sdk::ByteSize::mb(1072))]; let node = subspace_sdk::Node::builder() .force_authoring(true) .role(subspace_sdk::node::Role::Authority)