For instance, signBroadcast() in integration test takes a *Node but only integration tests can use that. Meanwhile, Context.Helpers.Node is inaccessible to SDK using code.
Instead of integration tests having their own custom code that makes chores easier, the utils that make such chores easier could be in the SDK helpers, so the integration test ends up being a succinct example code repository.
For instance,
signBroadcast()
in integration test takes a*Node
but only integration tests can use that. Meanwhile,Context.Helpers.Node
is inaccessible to SDK using code.Instead of integration tests having their own custom code that makes chores easier, the utils that make such chores easier could be in the SDK helpers, so the integration test ends up being a succinct example code repository.