compactIntToBytes static method

List<int> compactIntToBytes(
  1. int value
)

Implementation

static List<int> compactIntToBytes(int value) {
  return const SubstrateScaleCUintEncoder().encode(value.toString());
}