Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
openzeppelin-contracts-upgradeable
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
俞永鹏
openzeppelin-contracts-upgradeable
Commits
b1346456
Commit
b1346456
authored
Feb 23, 2017
by
Manuel Aráoz
Committed by
GitHub
Feb 23, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #150 from maraoz/solidty-version
solidity version 0.4.8
parents
d41cc437
52b66c74
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
31 additions
and
31 deletions
+31
-31
Bounty.sol
contracts/Bounty.sol
+1
-1
DayLimit.sol
contracts/DayLimit.sol
+1
-1
LimitBalance.sol
contracts/LimitBalance.sol
+1
-1
MultisigWallet.sol
contracts/MultisigWallet.sol
+1
-1
SafeMath.sol
contracts/SafeMath.sol
+1
-1
Killable.sol
contracts/lifecycle/Killable.sol
+1
-1
Migrations.sol
contracts/lifecycle/Migrations.sol
+1
-1
Pausable.sol
contracts/lifecycle/Pausable.sol
+1
-1
DelayedClaimable.sol
contracts/ownership/DelayedClaimable.sol
+1
-1
Multisig.sol
contracts/ownership/Multisig.sol
+1
-1
Ownable.sol
contracts/ownership/Ownable.sol
+1
-1
Shareable.sol
contracts/ownership/Shareable.sol
+1
-1
PullPayment.sol
contracts/payment/PullPayment.sol
+1
-1
BasicToken.sol
contracts/token/BasicToken.sol
+1
-1
CrowdsaleToken.sol
contracts/token/CrowdsaleToken.sol
+1
-1
ERC20.sol
contracts/token/ERC20.sol
+1
-1
ERC20Basic.sol
contracts/token/ERC20Basic.sol
+1
-1
SimpleToken.sol
contracts/token/SimpleToken.sol
+1
-1
StandardToken.sol
contracts/token/StandardToken.sol
+1
-1
BasicTokenMock.sol
test/helpers/BasicTokenMock.sol
+1
-1
DayLimitMock.sol
test/helpers/DayLimitMock.sol
+1
-1
InsecureTargetBounty.sol
test/helpers/InsecureTargetBounty.sol
+1
-1
LimitBalanceMock.sol
test/helpers/LimitBalanceMock.sol
+1
-1
MultisigWalletMock.sol
test/helpers/MultisigWalletMock.sol
+1
-1
PausableMock.sol
test/helpers/PausableMock.sol
+1
-1
PullPaymentMock.sol
test/helpers/PullPaymentMock.sol
+1
-1
SafeMathMock.sol
test/helpers/SafeMathMock.sol
+1
-1
SecureTargetBounty.sol
test/helpers/SecureTargetBounty.sol
+1
-1
ShareableMock.sol
test/helpers/ShareableMock.sol
+1
-1
StandardTokenMock.sol
test/helpers/StandardTokenMock.sol
+1
-1
VestedTokenMock.sol
test/helpers/VestedTokenMock.sol
+1
-1
No files found.
contracts/Bounty.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import './payment/PullPayment.sol';
...
...
contracts/DayLimit.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import './ownership/Shareable.sol';
...
...
contracts/LimitBalance.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
/**
...
...
contracts/MultisigWallet.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import "./ownership/Multisig.sol";
...
...
contracts/SafeMath.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
/**
...
...
contracts/lifecycle/Killable.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import "../ownership/Ownable.sol";
...
...
contracts/lifecycle/Migrations.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import '../ownership/Ownable.sol';
...
...
contracts/lifecycle/Pausable.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import "../ownership/Ownable.sol";
...
...
contracts/ownership/DelayedClaimable.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import './Ownable.sol';
...
...
contracts/ownership/Multisig.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
/*
...
...
contracts/ownership/Ownable.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
/*
...
...
contracts/ownership/Shareable.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
/*
...
...
contracts/payment/PullPayment.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
/*
...
...
contracts/token/BasicToken.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import './ERC20Basic.sol';
...
...
contracts/token/CrowdsaleToken.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import "./StandardToken.sol";
...
...
contracts/token/ERC20.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
/*
...
...
contracts/token/ERC20Basic.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
/*
...
...
contracts/token/SimpleToken.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import "./StandardToken.sol";
...
...
contracts/token/StandardToken.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import './ERC20.sol';
...
...
test/helpers/BasicTokenMock.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import '../../contracts/token/BasicToken.sol';
...
...
test/helpers/DayLimitMock.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import "../../contracts/DayLimit.sol";
contract DayLimitMock is DayLimit {
...
...
test/helpers/InsecureTargetBounty.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import {Bounty, Target} from "../../contracts/Bounty.sol";
...
...
test/helpers/LimitBalanceMock.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import '../../contracts/LimitBalance.sol';
...
...
test/helpers/MultisigWalletMock.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import "../../contracts/MultisigWallet.sol";
contract MultisigWalletMock is MultisigWallet {
...
...
test/helpers/PausableMock.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import '../../contracts/lifecycle/Pausable.sol';
...
...
test/helpers/PullPaymentMock.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import '../../contracts/payment/PullPayment.sol';
...
...
test/helpers/SafeMathMock.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import '../../contracts/SafeMath.sol';
...
...
test/helpers/SecureTargetBounty.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import {Bounty, Target} from "../../contracts/Bounty.sol";
...
...
test/helpers/ShareableMock.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import "../../contracts/ownership/Shareable.sol";
contract ShareableMock is Shareable {
...
...
test/helpers/StandardTokenMock.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import '../../contracts/token/StandardToken.sol';
...
...
test/helpers/VestedTokenMock.sol
View file @
b1346456
pragma solidity ^0.4.
4
;
pragma solidity ^0.4.
8
;
import '../../contracts/token/VestedToken.sol';
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment