-
I used to be able to run this:
And it would work fine. But at some point I did a
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
ContextThere was a change in Reach's algorand devnet where we moved the postgres db inside of the devnet Docker image, instead of relying on it as a separate Docker image. Unfortunately, this has hampered one's ability to run old devnets. There are three versioned things to understand about what's going on here:
For #1, you can pull an old version of the As for #s 2 and 3, you can see their version by calling
Notice how, for me, SolutionsThere are two ways to work around this issue: just run a newer version of the devnetNewer versions of the Algorand devnet may still be compatible with your smart contracts, even if they were compiled with an older retag
|
Beta Was this translation helpful? Give feedback.
Context
There was a change in Reach's algorand devnet where we moved the postgres db inside of the devnet Docker image, instead of relying on it as a separate Docker image. Unfortunately, this has hampered one's ability to run old devnets.
There are three versioned things to understand about what's going on here:
reach
scriptreachsh/reach-cli
Docker imagereachsh/devnet-algo
Docker imageFor #1, you can pull an old version of the
reach
script directly off of github, though this is likely unnecessary. See, for example: https://github.com/reach-sh/reach-lang/blob/2604daf0/reachAs for #s 2 and 3, you can see their version by …