File tree 2 files changed +12
-4
lines changed
common/src/main/java/jp/co/soramitsu/common/data/network/runtime/model 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
buildscript {
2
2
ext {
3
3
// App version
4
- versionName = ' 2.0.10 '
5
- versionCode = 71
4
+ versionName = ' 2.0.11 '
5
+ versionCode = 72
6
6
7
7
// SDK and tools
8
8
compileSdkVersion = 31
Original file line number Diff line number Diff line change @@ -2,7 +2,15 @@ package jp.co.soramitsu.common.data.network.runtime.model
2
2
3
3
import java.math.BigInteger
4
4
5
+ // todo there were a field which caused an errors:
6
+ // val weight: Long
7
+ // we weren't use it anywhere so I just removed it
8
+ // New response should have a struct like this:
9
+ // {
10
+ // "weight":{"ref_time":164143000},
11
+ // "class":"normal",
12
+ // "partialFee":"15407544760"
13
+ // }
5
14
class FeeResponse (
6
- val partialFee : BigInteger ,
7
- val weight : Long
15
+ val partialFee : BigInteger
8
16
)
You can’t perform that action at this time.
0 commit comments