diff --git a/primitives/src/lib.rs b/primitives/src/lib.rs index be3b728e3..3472d29df 100644 --- a/primitives/src/lib.rs +++ b/primitives/src/lib.rs @@ -87,10 +87,10 @@ pub mod currency { // Monetary value // ============= - /// Lets assume 10 TNT = 1USD + /// Lets assume 100 TNT = 1USD /// This assumption forms the base of all fee calculations, revisit this /// if the assumption is no longer true. - pub const DOLLAR: Balance = UNIT * 10; + pub const DOLLAR: Balance = UNIT * 100; pub const CENT: Balance = DOLLAR / 100; pub const MILLICENT: Balance = CENT / 1000; /// The existential deposit. diff --git a/runtime/mainnet/src/lib.rs b/runtime/mainnet/src/lib.rs index 28c3ada05..b0758e031 100644 --- a/runtime/mainnet/src/lib.rs +++ b/runtime/mainnet/src/lib.rs @@ -171,7 +171,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("tangle"), impl_name: create_runtime_str!("tangle"), authoring_version: 1, - spec_version: 1000, // v1.0.00 + spec_version: 1001, // v1.0.1 impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -1043,9 +1043,9 @@ impl pallet_tx_pause::Config for Runtime { } parameter_types! { - pub const BasicDeposit: Balance = deposit(0, 600); - pub const ByteDeposit: Balance = deposit(0, 100); - pub const FieldDeposit: Balance = deposit(0, 66); + pub const BasicDeposit: Balance = deposit(0, 200); + pub const ByteDeposit: Balance = deposit(0, 50); + pub const FieldDeposit: Balance = deposit(0, 33); pub const SubAccountDeposit: Balance = deposit(1, 53); pub const MaxSubAccounts: u32 = 100; #[derive(Serialize, Deserialize)] diff --git a/runtime/testnet/src/lib.rs b/runtime/testnet/src/lib.rs index 8c6ac4d8f..2ca6f5f10 100644 --- a/runtime/testnet/src/lib.rs +++ b/runtime/testnet/src/lib.rs @@ -169,7 +169,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("tangle-testnet"), impl_name: create_runtime_str!("tangle-testnet"), authoring_version: 1, - spec_version: 1000, // v1.0.00 + spec_version: 1001, // v1.0.1 impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,