File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
library/src/main/kotlin/one/mixin/bot Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -144,14 +144,14 @@ class HttpClient private constructor(
144144 val list = mutableListOf<Any >()
145145 list.add(hash)
146146 list.add(index)
147- return userService.mixinRPCCall (RpcRequest (" getutxo" , list))
147+ return userService.mixinMainnetRPCCall (RpcRequest (" getutxo" , list))
148148 }
149149
150150 override suspend fun getutxo (hash : String , index : Int ): JsonObject {
151151 val list = mutableListOf<Any >()
152152 list.add(hash)
153153 list.add(index)
154- return userService.mixinRPC (RpcRequest (" getutxo" , list))
154+ return userService.mixinMainnetRPC (RpcRequest (" getutxo" , list))
155155 }
156156 }
157157 }
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ interface UserCallService {
5353 ): Call <MixinResponse <List <GhostKey >>>
5454
5555 @POST(" external/proxy" )
56- fun mixinRPCCall (
56+ fun mixinMainnetRPCCall (
5757 @Body rpcRequest : RpcRequest
5858 ): Call <JsonObject >
5959}
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ interface UserCoroutineService {
4444 suspend fun readGhostKeys (@Body ghostKeyRequest : GhostKeyRequest ): MixinResponse <List <GhostKey >>
4545
4646 @POST(" external/proxy" )
47- suspend fun mixinRPC (
47+ suspend fun mixinMainnetRPC (
4848 @Body rpcRequest : RpcRequest
4949 ): JsonObject
5050}
You can’t perform that action at this time.
0 commit comments