Skip to content

Commit efd461c

Browse files
authored
Add setup_trustee call (paritytech#280)
1 parent 132fc32 commit efd461c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

runtime/src/fee.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,12 @@ impl CheckFee for Call {
4747
// xmining
4848
Call::XStaking(call) => match call {
4949
XStakingCall::register(_) => Some(100),
50-
XStakingCall::refresh(_, _, _, _) => Some(100),
50+
XStakingCall::refresh(_, _, _, _) => Some(5),
5151
XStakingCall::nominate(_, _, _) => Some(5),
5252
XStakingCall::unnominate(_, _, _) => Some(3),
5353
XStakingCall::unfreeze(_, _) => Some(2),
5454
XStakingCall::claim(_) => Some(3),
55+
XStakingCall::setup_trustee(_, _, _, _) => Some(5),
5556
_ => None,
5657
},
5758
Call::XTokens(call) => match call {

0 commit comments

Comments
 (0)