From a321c6c1bc2759c319738de280a542187b45a372 Mon Sep 17 00:00:00 2001 From: CryptoManiac Date: Thu, 27 Aug 2015 22:54:04 +0300 Subject: [PATCH] CodeContractsReferenceAssembly=Build, fix typo in method name --- Novacoin/CScript.cs | 4 ++-- Novacoin/Novacoin.csproj | 2 +- Novacoin/ScriptCode.cs | 6 +++--- NovacoinTest/NovacoinTest.csproj | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Novacoin/CScript.cs b/Novacoin/CScript.cs index 2762f6c..902e3b2 100644 --- a/Novacoin/CScript.cs +++ b/Novacoin/CScript.cs @@ -52,7 +52,7 @@ namespace Novacoin /// Return a new instance of ByteQueue object for current code bytes /// /// - public ByteQueue GetByteQUeue() + public ByteQueue GetByteQueue() { return new ByteQueue(codeBytes); } @@ -401,7 +401,7 @@ namespace Novacoin // This is a pay-to-script-hash scriptPubKey; // get the last item that the scriptSig // pushes onto the stack: - ByteQueue wScriptSig = scriptSig.GetByteQUeue(); + ByteQueue wScriptSig = scriptSig.GetByteQueue(); instruction opcode; // Current instruction byte[] pushArgs; // OP_PUSHDATAn argument diff --git a/Novacoin/Novacoin.csproj b/Novacoin/Novacoin.csproj index 57f12c6..ab3512e 100644 --- a/Novacoin/Novacoin.csproj +++ b/Novacoin/Novacoin.csproj @@ -61,7 +61,7 @@ False True Full - %28none%29 + Build 0 diff --git a/Novacoin/ScriptCode.cs b/Novacoin/ScriptCode.cs index 7a0f105..458445a 100644 --- a/Novacoin/ScriptCode.cs +++ b/Novacoin/ScriptCode.cs @@ -551,8 +551,8 @@ namespace Novacoin instruction opcode1, opcode2; // Compare - var bq1 = script1.GetByteQUeue(); - var bq2 = script2.GetByteQUeue(); + var bq1 = script1.GetByteQueue(); + var bq2 = script2.GetByteQueue(); byte[] args1, args2; @@ -863,7 +863,7 @@ namespace Novacoin var falseBytes = new byte[0]; var trueBytes = new byte[] { 0x01 }; - var CodeQueue = script.GetByteQUeue(); + var CodeQueue = script.GetByteQueue(); var altStack = new List(); try diff --git a/NovacoinTest/NovacoinTest.csproj b/NovacoinTest/NovacoinTest.csproj index 1ad2fad..a8ba155 100644 --- a/NovacoinTest/NovacoinTest.csproj +++ b/NovacoinTest/NovacoinTest.csproj @@ -64,7 +64,7 @@ False True Full - %28none%29 + Build 0 -- 1.7.1