From d4b77f4188297f408fb0144d2075e23239d23346 Mon Sep 17 00:00:00 2001 From: Luis Rubio Date: Tue, 15 Mar 2022 11:03:19 +0100 Subject: [PATCH] feat: include forwarded routes for the node in the wallet API --- wallet/src/actors/app/routes.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wallet/src/actors/app/routes.rs b/wallet/src/actors/app/routes.rs index 0830cfbce..4f0ec4be0 100644 --- a/wallet/src/actors/app/routes.rs +++ b/wallet/src/actors/app/routes.rs @@ -153,9 +153,11 @@ pub fn connect_routes( forwarded_routes!( handler, api, + ("data_request_report", "dataRequestReport"), ("get_block", "getBlock"), ("get_block_chain", "getBlockChain"), ("get_output", "getOutput"), + ("get_transaction_by_hash", "getTransaction"), ("inventory", "inventory"), );