From 618cc4b670220fea76c47284998eaf4be4d10433 Mon Sep 17 00:00:00 2001 From: gsalzer Date: Wed, 8 Feb 2023 12:38:07 +0000 Subject: [PATCH] Update parity_wallet_bug_1.sol Fixing compiler version --- dataset/access_control/parity_wallet_bug_1.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dataset/access_control/parity_wallet_bug_1.sol b/dataset/access_control/parity_wallet_bug_1.sol index 5a95490..d5cc2bf 100644 --- a/dataset/access_control/parity_wallet_bug_1.sol +++ b/dataset/access_control/parity_wallet_bug_1.sol @@ -15,7 +15,7 @@ // some number (specified in constructor) of the set of owners (specified in the constructor, modifiable) before the // interior is executed. -pragma solidity ^0.4.9; +pragma solidity 0.4.9; /* originally ^0.4.9, but doesn't compile with ^0.4.11 */ contract WalletEvents { // EVENTS @@ -466,4 +466,4 @@ contract Wallet is WalletEvents { // list of owners uint[256] m_owners; -} \ No newline at end of file +}