You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have not tested these installation scripts on any cloud service. In addition, if you are using Runpod cloud service, then note that this service is already [containerized](https://docs.runpod.io/pods/overview). Hence, the only option available to you is to compile from the source, as described in the above [Compiling your own binary](#compiling-your-own-binary) section. Note that these scripts have not been tested on Runpod.
PowRegistrationAllowed(u16,bool),// --- Event created when POW registration is allowed/disallowed for a subnet.
855
862
TempoSet(u16,u16),// --- Event created when setting tempo on a network
856
863
RAORecycledForRegistrationSet(u16,u64),// Event created when setting the RAO recycled for registration.
864
+
WeightsMinStake(u64),// --- Event created when min stake is set for validators to set weights.
857
865
SenateRequiredStakePercentSet(u64),// Event created when setting the minimum required stake amount for senate registration.
858
866
AdjustmentAlphaSet(u16,u64),// Event created when setting the adjustment alpha on a subnet.
859
867
Faucet(T::AccountId,u64),// Event created when the facuet it called on the test net.
@@ -878,6 +886,7 @@ pub mod pallet {
878
886
NotRegistered,// ---- Thrown when the caller requests setting or removing data from a neuron which does not exist in the active set.
879
887
NonAssociatedColdKey,// ---- Thrown when a stake, unstake or subscribe request is made by a coldkey which is not associated with the hotkey account.
880
888
NotEnoughStaketoWithdraw,// ---- Thrown when the caller requests removing more stake than there exists in the staking account. See: fn remove_stake.
889
+
NotEnoughStakeToSetWeights,// ---- Thrown when the caller requests to set weights but has less than WeightsMinStake
881
890
NotEnoughBalanceToStake,// ---- Thrown when the caller requests adding more stake than there exists in the cold key account. See: fn add_stake
882
891
BalanceWithdrawalError,// ---- Thrown when the caller tries to add stake, but for some reason the requested amount could not be withdrawn from the coldkey account.
883
892
NoValidatorPermit,// ---- Thrown when the caller attempts to set non-self weights without being a permitted validator.
0 commit comments