Commit d9007f2d authored by Tankred Hase's avatar Tankred Hase

Add EstimateFee grpc api to LndReactModule.m

parent 3150165e
......@@ -135,6 +135,7 @@ RCT_EXPORT_METHOD(start: (RCTPromiseResolveBlock)resolve
@"WalletBalance" : ^(NSData* bytes, NativeCallback* cb) { LndmobileWalletBalance(bytes, cb); },
@"ChannelBalance" : ^(NSData* bytes, NativeCallback* cb) { LndmobileChannelBalance(bytes, cb); },
@"NewAddress" : ^(NSData* bytes, NativeCallback* cb) { LndmobileNewAddress(bytes, cb); },
@"EstimateFee" : ^(NSData* bytes, NativeCallback* cb) { LndmobileEstimateFee(bytes, cb); },
@"Status" : ^(NSData* bytes, NativeCallback* cb) { LndmobileAutopilotStatus(bytes, cb); },
@"SetScores" : ^(NSData* bytes, NativeCallback* cb) { LndmobileAutopilotSetScores(bytes, cb); },
@"QueryScores" : ^(NSData* bytes, NativeCallback* cb) { LndmobileAutopilotQueryScores(bytes, cb); },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment