Skip to content

Commit

Permalink
Increase the OP_RETURN from 40 to 83.
Browse files Browse the repository at this point in the history
- Changed to support multi-sig cold-staking activation.
  • Loading branch information
sondreb committed Jun 7, 2021
1 parent 102718b commit f229f50
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN curl -Ls https://github.com/CityChainFoundation/city-chain/releases/download/v1.0.31/City.Chain-1.0.31-linux-x64.tar.gz \
RUN curl -Ls https://github.com/CityChainFoundation/city-chain/releases/download/v1.0.32/City.Chain-1.0.32-linux-x64.tar.gz \
| tar -xvz -C .

COPY city.conf.docker /root/.citychain/city/CityMain/city.conf
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "citychain",
"version": "1.0.31",
"version": "1.0.32",
"license": "MIT",
"author": {
"name": "City Chain Foundation",
Expand Down
2 changes: 1 addition & 1 deletion src/City/Networks/Policies/CityStandardScriptsRegistry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace City.Networks
/// </summary>
public class CityStandardScriptsRegistry : StandardScriptsRegistry
{
public const int MaxOpReturnRelay = 40;
public const int MaxOpReturnRelay = 83;

// Need a network-specific version of the template list
private readonly List<ScriptTemplate> standardTemplates = new List<ScriptTemplate>
Expand Down
4 changes: 2 additions & 2 deletions src/Stratis.Bitcoin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.0.31.0")]
[assembly: AssemblyFileVersion("3.0.31.0")]
[assembly: AssemblyVersion("3.0.32.0")]
[assembly: AssemblyFileVersion("3.0.32.0")]
[assembly: InternalsVisibleTo("Stratis.Bitcoin.Tests")]

0 comments on commit f229f50

Please sign in to comment.