We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2bbd3a commit b981e3aCopy full SHA for b981e3a
framework/.changeset/v0.7.5.md
@@ -0,0 +1 @@
1
+- Add caching for blockchain component back
framework/components/blockchain/blockchain.go
@@ -58,6 +58,9 @@ type Node struct {
58
59
// NewBlockchainNetwork this is an abstraction that can spin up various blockchain network simulators
60
func NewBlockchainNetwork(in *Input) (*Output, error) {
61
+ if in.Out != nil && in.Out.UseCache {
62
+ return in.Out, nil
63
+ }
64
var out *Output
65
var err error
66
switch in.Type {
0 commit comments