test: include the binary path in the ForeignNode

Signed-off-by: ljedrz <ljedrz@gmail.com>
This commit is contained in:
ljedrz 2020-09-11 12:04:21 +02:00
parent f758504d05
commit d9bebb9a74

View File

@ -25,6 +25,7 @@ pub mod common {
pub id: PeerId,
pub pk: PublicKey,
pub addrs: Vec<Multiaddr>,
pub binary_path: String,
}
impl ForeignNode {
@ -96,6 +97,7 @@ pub mod common {
id,
pk,
addrs: addresses,
binary_path,
}
}